/* ============================================
   bitMédico - Registro Médico CSS
============================================ */

body.registro-medico-page {
    min-height: 100vh;
    display: flex;
    background: var(--gray-100);
}

.registro-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ============================================
   LEFT PANEL - BRANDING & BENEFITS
============================================ */
.registro-left {
    width: 420px;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.registro-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.registro-branding {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.registro-branding .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 2rem;
}

.registro-branding .logo-icon {
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.registro-branding .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.registro-branding h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.registro-branding > p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.benefit-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.benefit-content p {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* ============================================
   RIGHT PANEL - FORM
============================================ */
.registro-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
    overflow-y: auto;
}

.registro-form-container {
    width: 100%;
    max-width: 540px;
    padding: 2rem 0;
}

/* ============================================
   STEP INDICATOR
============================================ */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    transition: color 0.3s ease;
}

.step.active .step-number {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.step.active .step-label {
    color: var(--primary);
}

.step.completed .step-number {
    background: var(--success);
    color: white;
}

.step.completed .step-label {
    color: var(--success);
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--gray-200);
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.step-line.active {
    background: var(--primary);
}

/* ============================================
   WIZARD STEPS
============================================ */
.wizard-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    margin-bottom: 1.5rem;
}

.step-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* User Preview */
.user-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h3 {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.user-info p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ============================================
   FORM ELEMENTS
============================================ */
.wizard-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group.flex-2 {
    flex: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.char-counter {
    text-align: right;
}

/* Input with icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 1rem;
    color: var(--gray-400);
    font-weight: 600;
}

.input-with-icon input {
    padding-left: 2rem;
}

.input-with-icon.right input {
    padding-right: 3rem;
    padding-left: 1rem;
}

.input-with-icon .input-btn {
    position: absolute;
    right: 0.5rem;
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.input-with-icon .input-btn:hover {
    background: var(--primary);
    color: white;
}

/* Slug preview */
.slug-preview {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slug-preview:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.slug-base {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    border-right: 1px solid var(--gray-200);
}

.slug-preview input {
    border: none;
    border-radius: 0;
    padding-left: 0.75rem;
}

.slug-preview input:focus {
    box-shadow: none;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.password-toggle:hover {
    color: var(--primary);
    background: var(--gray-100);
}

/* ============================================
   INFO BOXES
============================================ */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-box i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.info-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.info-box.warning i {
    color: #f59e0b;
}

.info-box.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.info-box.info i {
    color: #3b82f6;
}

.info-box.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.info-box.success i {
    color: #10b981;
}

/* ============================================
   MAP CONTAINER
============================================ */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.map-box {
    width: 100%;
    height: 250px;
    background: var(--gray-100);
}

.map-hint {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-200);
}

.map-hint i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* ============================================
   CHECKBOX CARDS
============================================ */
.checkbox-cards {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.checkbox-card {
    flex: 1;
    min-width: 120px;
    cursor: pointer;
}

.checkbox-card input {
    display: none;
}

.checkbox-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-card .card-content i {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.checkbox-card .card-content span {
    font-weight: 500;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.checkbox-card input:checked + .card-content {
    border-color: var(--primary);
    background: rgba(13, 148, 136, 0.05);
}

.checkbox-card input:checked + .card-content i {
    color: var(--primary);
}

.checkbox-card input:checked + .card-content span {
    color: var(--primary);
}

.checkbox-card:hover .card-content {
    border-color: var(--primary-light);
}

/* ============================================
   SCHEDULE BUILDER
============================================ */
.schedule-builder {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.schedule-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row.header {
    background: var(--gray-50);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.day-col {
    width: 100px;
    font-weight: 500;
}

.time-col {
    width: 90px;
    text-align: center;
}

.toggle-col {
    width: 50px;
    text-align: center;
}

.time-input {
    width: 90px;
    padding: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* ============================================
   CHECKBOX LABEL
============================================ */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    accent-color: var(--primary);
}

.checkbox-label.terms span {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-label.terms a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   FORM ACTIONS
============================================ */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-full {
    width: 100%;
}

.btn-success {
    background: var(--success);
}

.btn-success:hover {
    background: #059669;
}

.btn .btn-loader {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   STEP FOOTER
============================================ */
.step-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.step-footer p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.step-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.step-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   ALERTS
============================================ */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .registro-left {
        display: none;
    }
    
    .registro-right {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .registro-form-container {
        padding: 1rem 0;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .step-indicator {
        gap: 0.25rem;
    }
    
    .step-label {
        display: none;
    }
    
    .step-line {
        width: 30px;
        margin-bottom: 0;
    }
    
    .checkbox-cards {
        flex-direction: column;
    }
    
    .checkbox-card {
        min-width: 100%;
    }
    
    .schedule-row {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .day-col {
        width: 70px;
        font-size: 0.85rem;
    }
    
    .time-input {
        width: 70px;
        font-size: 0.8rem;
        padding: 0.4rem;
    }
}
/* ============================================
   SLUG VALIDATION STYLES
   Agregar al final de registro-medico.css
============================================ */

.slug-group {
    margin-bottom: 1.5rem;
}

.slug-group label .required {
    color: #dc2626;
}

.slug-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slug-input-wrapper .slug-preview {
    flex: 1;
}

.slug-status {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slug-status.checking {
    color: var(--primary);
}

.slug-status.available {
    color: #059669;
    background: #d1fae5;
}

.slug-status.taken,
.slug-status.error {
    color: #dc2626;
    background: #fee2e2;
}

/* Input states */
#slug.slug-available {
    border-color: #059669 !important;
    background-color: #f0fdf4;
}

#slug.slug-taken,
#slug.slug-error {
    border-color: #dc2626 !important;
    background-color: #fef2f2;
}

/* Feedback messages */
.slug-feedback .form-hint {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.slug-feedback .form-hint.success {
    color: #059669;
    font-weight: 500;
}

.slug-feedback .form-hint.error {
    color: #dc2626;
    font-weight: 500;
}

.slug-feedback .form-hint.checking {
    color: var(--primary);
}

/* Suggestions */
.slug-suggestions {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.slug-suggestions > small {
    display: block;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-chip {
    padding: 0.35rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--gray-700);
    font-family: inherit;
}

.suggestion-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Example box */
.slug-example-box {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
}

.slug-example-box .example-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.slug-example-box .example-header i {
    color: #fbbf24;
}

.example-urls {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.example-urls code {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--gray-600);
    background: white;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e0f2fe;
}

.example-urls code strong {
    color: var(--primary);
    font-weight: 600;
}

/* Alert info type */
.alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

/* Responsive */
@media (max-width: 480px) {
    .slug-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slug-status {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slug-input-wrapper .slug-preview {
        position: relative;
    }
    
    .example-urls code {
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    .suggestion-chips {
        flex-direction: column;
    }
    
    .suggestion-chip {
        text-align: center;
    }
}
/* ============================================
   SLUG VALIDATION STYLES
   AGREGAR AL FINAL de: /public_html/assets/css/auth/registro-medico.css
============================================ */

/* Slug Group */
.slug-group {
    margin-bottom: 1.5rem;
}

.slug-group label .required {
    color: #dc2626;
}

.slug-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slug-input-wrapper .slug-preview {
    flex: 1;
}

/* Status indicator */
.slug-status {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slug-status.checking {
    color: var(--primary);
}

.slug-status.available {
    color: #059669;
    background: #d1fae5;
}

.slug-status.taken,
.slug-status.error {
    color: #dc2626;
    background: #fee2e2;
}

/* Input states */
#slug.slug-available {
    border-color: #059669 !important;
    background-color: #f0fdf4;
}

#slug.slug-taken,
#slug.slug-error {
    border-color: #dc2626 !important;
    background-color: #fef2f2;
}

/* Feedback messages */
.slug-feedback .form-hint {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.slug-feedback .form-hint.success {
    color: #059669;
    font-weight: 500;
}

.slug-feedback .form-hint.error {
    color: #dc2626;
    font-weight: 500;
}

.slug-feedback .form-hint.checking {
    color: var(--primary);
}

/* Suggestions */
.slug-suggestions {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.slug-suggestions > small {
    display: block;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-chip {
    padding: 0.35rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--gray-700);
    font-family: inherit;
}

.suggestion-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Example box */
.slug-example-box {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
}

.slug-example-box .example-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.slug-example-box .example-header i {
    color: #fbbf24;
}

.example-urls {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.example-urls code {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--gray-600);
    background: white;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e0f2fe;
}

.example-urls code strong {
    color: var(--primary);
    font-weight: 600;
}

/* Alert info type */
.alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .slug-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slug-input-wrapper .slug-preview {
        position: relative;
    }
    
    .slug-status {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .example-urls code {
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    .suggestion-chips {
        flex-direction: column;
    }
    
    .suggestion-chip {
        text-align: center;
    }
}