:root {
    --primary-color: #2281c4;
    /* Màu xanh chuẩn theo ảnh của bạn */
    --primary-gradient: linear-gradient(90deg, #00d2ff 0%, #2281c4 100%);
    --bg-light: #f8faff;
    --text-dark: #2d3436;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* Biến cũ của style.css */
    --primary: #00bcd4;
    --secondary: #0097a7;
    --bg-gray: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- NAVIGATION (Tab Style like your image) --- */
.navbar {
    background: white !important;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 600;
    color: #636e72 !important;
    padding: 1.5rem 1rem !important;
    position: relative;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(34, 129, 196, 0.05);
    border-radius: 12px;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* Thanh gạch chân màu xanh giống ảnh bạn gửi */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 4px 4px 0 0;
}

/* --- Layout --- */
.page-container {
    max-width: 1400px;
    margin: 60px auto;
    /* Tăng khoảng cách với Navbar lên 60px */
    padding: 0 20px;
    /* Giảm padding hai bên để tận dụng không gian tốt hơn */
}

.page-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.page-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* Tăng chiều sâu của hiệu ứng bay lên */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quy chuẩn Padding cho các trang Medical cao cấp */
.premium-section-padding {
    padding-top: 50px !important;
    padding-bottom: 80px !important;
}

/* --- Common UI Components --- */
.section-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.data-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    border: 1px solid #eee;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.btn-modern {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 129, 196, 0.3);
    background: linear-gradient(90deg, #2281c4 0%, #00d2ff 100%);
    color: white;
}

.btn-modern:active {
    transform: translateY(0);
}

/* Form styling */
.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
}

/* --- CŨ TỪ STYLE.CSS --- */

/* Navigation Bar */
.top-nav {
    background: white;
    padding: 10px;
    border-bottom: 2px solid var(--primary);
}

.nav-item-custom {
    cursor: pointer;
    color: #555;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 14px;
}

.nav-item-custom:hover,
.nav-item-custom.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* General Container */
.page-content {
    display: none;
    background: white;
    min-height: 80vh;
    margin-top: 20px;
    border-radius: 8px;
    /* overflow: hidden; -> Xóa bỏ dòng này để cho phép Banner (.full-width-banner) được phép bung tràn ra lề màn hình */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-content.active {
    display: block;
}

/* Header Blue Section */
.blue-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    position: relative;
}

.blue-header img {
    width: 100%;
    max-width: 400px;
    float: right;
}

/* Components */
.card-menu {
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.card-menu:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.bg-blue {
    background-color: #2196f3;
}

.bg-orange {
    background-color: #ff9800;
}

.bg-teal {
    background-color: #009688;
}

.bg-cyan {
    background-color: #00bcd4;
}

.list-item {
    border-bottom: 1px solid #eee;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 15px;
}

.btn-select {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 25px;
}

/* Doctor Detail Table */
.time-slot {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin-bottom: 5px;
}

.time-slot:hover {
    background: var(--primary);
    color: white;
}

.success-box {
    text-align: center;
    padding: 50px;
}

.success-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
}

.bg-red {
    background-color: #f44336;
}

.emergency-circle {
    width: 120px;
    height: 120px;
    background-color: #ffcdd2;
    color: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(244, 67, 54, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.btn-outline-teal {
    border: 1px solid #009688;
    color: #009688;
}

.btn-outline-teal:hover {
    background: #009688;
    color: white;
}

/* Style cho trang Liên hệ */
.contact-icon-box {
    width: 40px;
    height: 40px;
    background: #e0f7fa;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

#contact .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
}

#contact .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
}

#contact h6 {
    font-weight: bold;
    color: #555;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;

    /* Hiệu ứng nhấp nháy cho nút Cấp cứu */
    .pulse-btn {
        width: 80px;
        height: 80px;
        background: #ff5e5e;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem auto;
        font-size: 2rem;
        animation: pulse 1.5s infinite;
        cursor: pointer;
        text-decoration: none;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 94, 94, 0.7);
        }

        70% {
            box-shadow: 0 0 0 20px rgba(255, 94, 94, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 94, 94, 0);
        }
    }
}

/* --- NAVIGATION MOBILE FIRST --- */

/* 1. Mặc định cho Mobile (Ẩn menu, hiện nút bấm) */
.nav-links-wrapper {
    display: none;
    /* Ẩn menu đi */
    flex-direction: column;
    position: absolute;
    top: 100%;
    /* Hiện ngay dưới thanh nav */
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid #eee;
}

/* Khi bấm nút Toggle sẽ thêm class này để hiện menu */
.nav-links-wrapper.show {
    display: flex;
}

.menu-toggle {
    cursor: pointer;
    padding: 5px;
}

.nav-item-custom {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #f9f9f9;
}

/* 2. Cho màn hình Máy tính (Desktop - Lớn hơn 992px) */
@media (min-width: 992px) {
    .menu-toggle {
        display: none !important;
        /* Ẩn nút hamburger */
    }

    .nav-links-wrapper {
        display: flex !important;
        /* Luôn hiện menu */
        flex-direction: row;
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }

    .nav-item-custom {
        border-bottom: none;
    }
}

/* Chuyên khoa: Hover Xem thêm đổi màu đỏ */
.specialtySwiper .card:hover small,
.related-specialty-slide:hover small {
    color: #ff4d4d !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* =========================================
   THÊM MỚI THEO YÊU CẦU UI NÂNG CẤP
=========================================== */
.hover-opacity:hover {
    opacity: 0.8 !important;
}

.cursor-pointer {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cursor-pointer:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 129, 196, 0.15) !important;
}

/* Tắt hiệu ứng nhảy (Hover) cho Banner chính */
.mainBannerSwiper .swiper-slide:hover {
    transform: none !important;
    box-shadow: none !important;
}

.mainBannerSwiper .swiper-slide:hover img {
    transform: none !important;
}

/* Image zoom effect within cards */
.card-img-top,
.card img,
.w-100.overflow-hidden img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover .card-img-top,
.cursor-pointer:hover img,
.card:hover img {
    transform: scale(1.1);
}

.card {
    overflow: hidden;
    /* Ensure image scaling doesn't break card borders */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer Links */
.custom-footer-links a {
    transition: 0.3s;
}

.custom-footer-links a:hover {
    color: #ffc107 !important;
    padding-left: 5px;
}

/* Chatbot UI */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    transition: transform 0.3s;
}

.chat-btn:hover {
    transform: scale(1.1);
}

.chatbot-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    z-index: 1001;
    display: none;
    border: 1px solid #ddd;
}

/* Floating Sidebar (Banner hông trái) */
.floating-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 900;
    width: 120px;
}

.side-banner {
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    background: white;
}

.side-banner:hover {
    transform: translateX(5px);
}

/* Swiper Customize */
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.swiper-wrapper {
    padding-bottom: 40px !important;
}

.specialtySwiper .swiper-wrapper,
.doctorSwiper .swiper-wrapper {
    padding-bottom: 20px !important;
}

/* ============================
   Custom Styles cho Main Banner
=============================== */
.mainBannerSwiper {
    position: relative;
    width: 100%;
    min-height: 400px;
    /* Chống sập khung giao diện khi ảnh tải chậm hoặc lỗi tải */
    background: #f8faff;
}

.mainBannerSwiper .swiper-wrapper {
    padding-bottom: 0 !important;
}

/* Full Width Banner CSS Hack Tối Ưu */
.full-width-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.banner-img-full {
    object-fit: cover;
    width: 100%;
    min-height: 400px;
    max-height: 550px;
    background-color: #f0f0f0;
    /* Hiển thị màu nền xám nếu ảnh tải chậm */
}

/* Swiper Buttons & Dots */
.mainBannerSwiper .swiper-button-next,
.mainBannerSwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.mainBannerSwiper .swiper-button-next:hover,
.mainBannerSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
}

.mainBannerSwiper .swiper-pagination {
    bottom: 15px !important;
}

.mainBannerSwiper .swiper-pagination-bullet {
    background: white !important;
    opacity: 0.6 !important;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.mainBannerSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1 !important;
    width: 30px;
    border-radius: 5px;
}

/* --- DOCTOR NAVIGATION --- */
.doctor-prev,
.doctor-next {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.doctor-prev:hover,
.doctor-next:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}

.doctor-detail-item {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-bio {
    background: linear-gradient(to right, #f0f7ff, #ffffff);
}

/* Kiểu cho tên bác sĩ trên 1 dòng */
.doctor-name {
    font-size: 0.85rem !important;
    /* Nhỏ hơn một chút để vừa */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

/* =========================================
   THIẾT KẾ CHO DANH SÁCH BỆNH VIỆN DẠNG 3D
=========================================== */
.hospital-card-3d {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(34, 129, 196, 0.05) !important;
    transform-style: preserve-3d;
}

.hospital-card-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(34, 129, 196, 0.15), 0 0 20px rgba(0, 210, 255, 0.1);
    border-color: rgba(34, 129, 196, 0.3) !important;
}

.hospital-img-wrapper {
    position: relative;
    overflow: hidden;
}

.hospital-img-wrapper img {
    transition: transform 0.6s ease;
}

.hospital-card-3d:hover .hospital-img-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

.hospital-title {
    transition: color 0.3s;
}

.hospital-card-3d:hover .hospital-title {
    color: #0dcaf0 !important;
}

/* CUSTOM PAGINATION BIẾN THỂ TỪ BOOTSTRAP */
.custom-pagination .page-item .page-link {
    border: none;
    background: #f8faff;
    color: var(--primary-color);
    margin: 0 5px;
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.custom-pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 129, 196, 0.4);
    transform: scale(1.1);
}

.custom-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: rgba(34, 129, 196, 0.1);
    transform: translateY(-3px);
}

.custom-pagination .page-item.disabled .page-link {
    background: #f1f1f1;
    color: #aaa;
    box-shadow: none;
}

/* =========================================
   THIẾT KẾ CHO DANH SÁCH BÁC SĨ DẠNG 3D
=========================================== */
.doctor-card-3d {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(23, 75, 147, 0.05) !important;
    transform-style: preserve-3d;
}

.doctor-card-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 40px rgba(23, 75, 147, 0.15), 0 0 15px rgba(13, 202, 240, 0.1);
    border-color: rgba(23, 75, 147, 0.2) !important;
}

.doctor-img-wrapper {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.doctor-card-3d:hover .doctor-img-wrapper {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(23, 75, 147, 0.3) !important;
}

.doctor-card-3d:hover .doctor-img-wrapper img {
    transform: scale(1.1);
}

.doctor-title {
    transition: color 0.3s;
}

.doctor-card-3d:hover .doctor-title {
    color: var(--primary-color) !important;
}

/* =========================================
   THIẾT KẾ 3D CHO TRANG ĐẶT LỊCH KHÁM (BOOKING)
=========================================== */

/* Trạng thái trống (Empty State) */
.booking-3d-card {
    background: linear-gradient(145deg, #ffffff, #f0f5fa);
    border-radius: 30px;
    box-shadow:
        20px 20px 40px rgba(0, 0, 0, 0.03),
        -20px -20px 40px rgba(255, 255, 255, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.icon-pulse-wrapper {
    position: relative;
    display: inline-block;
    animation: floatingIcon 3s ease-in-out infinite;
}

@keyframes floatingIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.booking-floating-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.booking-floating-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px rgba(23, 75, 147, 0.2) !important;
}

/* Trạng thái có Form (Form State) */
.booking-target-3d {
    background: linear-gradient(135deg, rgba(23, 75, 147, 0.05) 0%, rgba(13, 202, 240, 0.05) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.06),
        /* Tăng bóng để khối trông sâu hơn */
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.booking-target-3d:hover {
    transform: translateZ(20px) translateY(-5px);
    box-shadow:
        0 25px 45px rgba(23, 75, 147, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 1);
}

.target-img-glow {
    box-shadow: 0 0 20px rgba(23, 75, 147, 0.2);
    transition: transform 0.4s ease;
}

.booking-target-3d:hover .target-img-glow {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 25px rgba(23, 75, 147, 0.4);
}

.booking-form-3d {
    background: #ffffff;
    box-shadow:
        10px 10px 30px rgba(0, 0, 0, 0.03),
        -10px -10px 30px rgba(255, 255, 255, 1);
    border: 1px solid rgba(23, 75, 147, 0.03);
    position: relative;
    z-index: 1;
}

.custom-3d-input {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f8faff;
    padding: 12px 15px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.02), inset -2px -2px 5px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.custom-3d-input:focus {
    background: #ffffff;
    outline: none;
    box-shadow: 0 5px 15px rgba(23, 75, 147, 0.1), inset 0 0 0 2px rgba(23, 75, 147, 0.2) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
}

.btn-3d-submit {
    background: var(--primary-gradient) !important;
    border: none;
    border-radius: 12px;
    color: white !important;
    box-shadow: 0 10px 20px rgba(23, 75, 147, 0.2) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-3d-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-3d-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(23, 75, 147, 0.4);
}

.btn-3d-submit:hover::before {
    left: 100%;
}

.btn-3d-cancel {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05), -5px -5px 15px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-3d-cancel:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 20px rgba(220, 53, 69, 0.15), -2px -2px 10px rgba(255, 255, 255, 1);
    color: #dc3545 !important;
}
#nav-login-btn .btn-primary {
    transition: all 0.3s ease;
    font-weight: 600;
}

#nav-login-btn .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4) !important;
    filter: brightness(1.1);
}

/* Sửa lỗi chữ bị dính vào mép menu */
.navbar-nav .nav-link {
    margin: 0 5px;
}
/* Style cho bộ nút thao tác hiện đại */
.action-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-action-custom {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* Bo góc mềm mại */
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Nút Duyệt - Màu xanh ngọc lục bảo */
.btn-approve {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.btn-approve:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
}

/* Nút Hủy - Màu vàng cam dịu */
.btn-cancel {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}
.btn-cancel:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(241, 196, 15, 0.4);
}

/* Nút Xóa - Màu đỏ san hô */
.btn-delete {
    background: linear-gradient(135deg, #ff7675, #d63031);
}
.btn-delete:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(214, 48, 49, 0.4);
}

.btn-action-custom i {
    font-size: 1.1rem;
}
/* Nút Hủy phong cách Medicare */
.btn-outline-danger {
    border: 2px solid #ff4d4d;
    color: #ff4d4d;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-outline-danger:hover {
    background-color: #ff4d4d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}