/* ===== Specialty Detail Page ===== */
.specialty-detail-page {
    background: #f5f5f5;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb-section {
    margin-top: 20px;
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}


.breadcrumb-item a {
    color: #0051a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-item a:hover {
        color: #003d7a;
        text-decoration: underline;
    }

.breadcrumb-item.active {
    color: #6b7280;
}

/* Main Content */
.specialty-detail-content {
    padding: 20px 0 60px;
}

/* Specialty Header */
.specialty-header {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 24px;
}

.specialty-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0051a5 0%, #003d7a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .specialty-header-icon i {
        font-size: 36px;
        color: white;
    }

.specialty-header-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.specialty-header-code {
    background: #e3f2fd;
    color: #0051a5;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Info Cards */
.specialty-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    gap: 16px;
    align-items: start;
    transition: all 0.3s ease;
}

    .info-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    .info-card i {
        font-size: 1.8rem;
        color: #0051a5;
        width: 40px;
    }

    .info-card strong {
        display: block;
        color: #1f2937;
        margin-bottom: 4px;
        font-size: 0.9rem;
    }

    .info-card p {
        margin: 0;
        color: #6b7280;
        font-size: 1rem;
    }

/* Content Box */
.specialty-content-box {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    line-height: 1.8;
}

    .specialty-content-box h1,
    .specialty-content-box h2,
    .specialty-content-box h3 {
        color: #1f2937;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .specialty-content-box h1 {
        color: #0051a5;
    }

    .specialty-content-box p {
        color: #4b5563;
        margin-bottom: 16px;
    }

    .specialty-content-box img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 16px 0;
    }

.empty-content {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

    .empty-content i {
        font-size: 3rem;
        margin-bottom: 16px;
        color: #d1d5db;
    }

/* Actions */
.specialty-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .specialty-actions .btn {
        font-weight: 600;
        padding: 12px 32px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .specialty-actions .btn-primary {
        background: linear-gradient(135deg, #0051a5 0%, #003d7a 100%);
        border: none;
        color: white;
    }

        .specialty-actions .btn-primary:hover {
            background: linear-gradient(135deg, #003d7a 0%, #002d5c 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 81, 165, 0.3);
        }

    .specialty-actions .btn-outline-secondary {
        color: #0051a5;
        border: 2px solid #0051a5;
        background: white;
    }

        .specialty-actions .btn-outline-secondary:hover {
            background: #0051a5;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 81, 165, 0.3);
        }

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0051a5;
}

/* Responsive */
@media (max-width: 767px) {
    .specialty-header {
        flex-direction: column;
        text-align: center;
    }

    .specialty-header-title {
        font-size: 1.5rem;
    }

    .specialty-info-cards {
        grid-template-columns: 1fr;
    }

    .specialty-actions {
        flex-direction: column;
    }

        .specialty-actions .btn {
            width: 100%;
        }
}
