
/* Container bao ngoài để giữ vị trí */
.auth-wrapper-container {
position: relative;
display: inline-block;
}

/* 1. Sửa lại Dropdown: Thêm lớp đệm ảo (::before) */
.auth-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px; /* Tạo khoảng cách nhìn cho đẹp */
    z-index: 99999;
    border: 1px solid #f0f0f0;
}

/* TẠO LỚP ĐỆM ẢO: Nối liền khoảng trống để không bị mất hover */
.auth-dropdown::before {
    content: "";
    position: absolute;
    top: -15px; /* Chiều cao bao phủ khoảng hở margin-top */
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent; /* Để trong suốt không ai thấy */
}

/* 2. Hiệu ứng hiện ra (Giữ nguyên logic của bạn) */
.auth-wrapper-container:hover .auth-dropdown {
    display: block;
    animation: fadeInDown 0.3s ease; /* Giảm thời gian animation cho mượt */
}

/* 3. Style các mục bên trong (Giữ nguyên code của bạn) */
.auth-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.auth-dropdown li a i {
    color: #f37201; /* Màu cam thương hiệu */
    width: 16px;
}

.auth-dropdown li a:hover {
    background: #fff5ed;
    color: #f37201;
}

.auth-dropdown li a.logout-link:hover {
    color: #d93025;
    background: #fff1f0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- RESET & LAYOUT CHÍNH --- */
.auth-tab-input { display: none; }
.auth-form-container { display: none; }

/* FIX KHUNG MODAL */
.auth-modal-content {
    background: #fff; 
    padding: 25px 30px; 
    border-radius: 20px;
    border: none; 
    position: relative; 
    width: 420px;
    max-width: 95%; 
    margin: auto; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* FIX DẤU X GÓC PHẢI */
.close-modal {
    position: absolute; 
    top: 15px; 
    right: 20px;
    font-size: 24px; 
    color: #ccc; 
    cursor: pointer;
    z-index: 100; 
    line-height: 1;
}

/* TABS PILL THU NHỎ */
.auth-tabs-v2 {
    display: flex; background: #f1f1f1; padding: 4px; border-radius: 50px;
    margin-top: 35px; margin-bottom: 22px;
}
.tab-btn-v2 {
    flex: 1; text-align: center; padding: 8px; border-radius: 50px;
    font-weight: 900; font-size: 13px; color: #888; cursor: pointer;
}

/* Tùy chỉnh thanh Tab chuẩn Bootstrap */
.auth-tabs-v2.nav-pills {
    background: #f1f1f1;
    padding: 4px;
    border-radius: 50px;
    border: none;
}

.auth-tabs-v2 .nav-link {
    border: none;
    border-radius: 50px !important;
    font-weight: 900;
    font-size: 13px;
    color: #888;
    padding: 8px;
    transition: 0.3s;
}

/* Màu khi Tab được chọn */
.auth-tabs-v2 .nav-link.active {
    background-color: #f37201 !important;
    color: #fff !important;
}

/* Đảm bảo Form container hiện đúng */
.auth-form-container, .tab-pane {
    display: none;
}
.tab-pane.active {
    display: block !important;
}

/* --- FIX LỖI INPUT & ICON MẮT (GIỮ ICON KHÔNG BỊ RỚT) --- */
.input-group-pro { 
    position: relative; 
    margin-bottom: 12px; 
    width: 100%; 
    display: block; 
}

.input-group-pro i:not(.toggle-password) {
    position: absolute; 
    left: 15px; 
    top: 50%;
    transform: translateY(-50%); 
    color: #f37201; 
    font-size: 14px;
    z-index: 10;
}

.input-group-pro input {
    width: 100%; 
    height: 42px; 
    padding: 0 40px 0 45px;
    border: 1.5px solid #eee; 
    border-radius: 10px;
    font-size: 13.5px; 
    box-sizing: border-box;
    display: block;
    background: #fff;
}

/* ÉP ICON MẮT NẰM ĐÚNG VỊ TRÍ TRONG INPUT */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
z-index: 999 !important; /* Ép nó nổi lên trên input */
    color: #999;
}

/* --- FIX THÔNG BÁO ALERT (MỎNG & CHỮ GIỮA) --- */
.auth-alert {
    width: 100%; 
    height: 38px; 
    line-height: 38px;
    padding: 0 10px; 
    margin: 8px 0 15px 0;
    border-radius: 8px; 
    background: #fff5f5;
    color: #e74c3c; 
    border: 1px solid #feb2b2;
    font-size: 13px; 
    text-align: center; 
    display: none;
    box-sizing: border-box; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.auth-alert:not(:empty) { display: block; }

/* --- STYLE NÚT SUBMIT CHUYÊN NGHIỆP --- */
.btn-auth-submit {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 12px; /* Bo góc đồng bộ với ô input */
    font-size: 15;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase; /* Viết hoa cho mạnh mẽ */
    letter-spacing: 0.5px;
     text-align: center; 


}

/* Nút Đăng Nhập (Màu đen sang trọng) */
.login-form-box .btn-auth-submit {
background: #222;
color: #fff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Nút Đăng Ký (Màu cam thương hiệu) */
.register-form-box .btn-auth-submit {
    padding: 10px;
background: #f37201;
color: #fff;
box-shadow: 0 4px 15px rgba(243, 114, 1, 0.2);
}

/* Hiệu ứng khi di chuột vào (Hover) */
.btn-auth-submit:hover {
transform: translateY(-2px); /* Nhích nhẹ lên trên */
filter: brightness(110%); /* Sáng hơn một chút */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hiệu ứng khi bấm vào (Active) */
.btn-auth-submit:active {
transform: translateY(0);
}


/* --- FIX SOCIAL LOGIN (CHIA 2 CỘT ĐỀU NHAU) --- */
/* Các phần trang trí khác */
.auth-header { text-align: center; margin-bottom: 20px; }
.auth-header h3 { font-weight: 900; margin: 0; font-size: 20px; }
.auth-header p { font-size: 13px; color: #888; }

.social-divider {
text-align: center; margin: 15px 0; position: relative;
}
.social-divider::before {
content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #eee;
}
.social-divider span {
background: #fff; padding: 0 10px; font-size: 11px; color: #999; position: relative; z-index: 2;
}


/* 4. Social Login (Fix lỗi chia 2 cột & Logo khổng lồ) */
.social-login-group { 
    display: flex;
    gap: 10px;
    margin-top: 1px;
    width: 100%;
    padding: 0 5px; /* Thêm chút đệm hai bên */
}

.btn-social {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px; /* Tăng nhẹ padding để bấm dễ hơn */
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600; /* Làm chữ đậm hơn một chút cho rõ */
    text-decoration: none;
    color: #444;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Hiệu ứng mượt mà */
}

/* HIỆU ỨNG CHUNG KHI HOVER */
.btn-social:hover {
    transform: translateY(-2px); /* Nhích nhẹ lên trên */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Đổ bóng nhẹ */
    border-color: #ddd;
    color: #222;
}

/* HIỆU ỨNG RIÊNG CHO GOOGLE */
.btn-social.google:hover {
    background-color: #fcfcfc;
    border-color: #4285F4; /* Màu xanh đặc trưng Google */
}

/* HIỆU ỨNG RIÊNG CHO MICROSOFT/OFFICE */
.btn-social.office:hover {
    background-color: #f1f9ff;
    border-color: #00a4ef; /* Màu xanh đặc trưng Microsoft */
}

/* KHI NHẤN GIỮ (ACTIVE) */
.btn-social:active {
    transform: translateY(0); /* Trả về vị trí cũ khi click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-social img { 
    width: 16px; 
    height: 16px; 
    object-fit: contain; 
}


/* --- TOGGLE GHI NHỚ --- */
.remember-switch { display: flex; align-items: center; gap: 8px; }
.switch { position: relative; display: inline-block; width: 34px; height: 18px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 30px; }
.slider:before { position: absolute; content: ""; height: 12px; width: 12px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
.switch input:checked + .slider { background-color: #00e64d; }
.switch input:checked + .slider:before { transform: translateX(16px); }
.switch-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.forgot-link {
    font-size: 14px;
    color: #444;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.forgot-link:hover {
text-decoration: underline;
color: #e66a00;
}


@keyframes authFadeIn { from { opacity: 0; } to { opacity: 1; } }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 15px 0;
}





/* Style cho ảnh đại diện tròn */
.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Làm tròn tuyệt đối */
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



/*///////////////////////////////////////////////////////////////////////// báo giá*/

/* --- PHẦN HERO NỀN (ĐẨY LÊN TRÊN CÙNG) --- */
.price-hero-area {
    background: linear-gradient(180deg, #fff9ea 0%, #f8f9fa 100%);
    padding: 160px 20px 60px; /* Padding top lớn để menu nằm đè lên */
    margin-top: -100px; /* Kéo nền lên trên cùng, chui dưới menu bo tròn */
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.price-hero-container h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.price-hero-container p {
    color: #666;
    font-size: 1.1rem;
}

.price-hero-line {
    width: 50px;
    height: 4px;
    background: #ffc107;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- GRID 3 CỘT --- */
.pricing-grid-3col { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    max-width: 1200px; 
    margin: -30px auto 0; /* Đẩy các card hơi đè lên nền hero cho đẹp */
    padding: 0 20px 40px; 
}

.p-card-v3 { 
    background: #fff; 
    border-radius: 20px; 
    padding: 35px 25px; 
    border: 1px solid #eee; 
    transition: all 0.3s ease; 
    position: relative; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.p-card-v3:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: #007bff; }
.p-icon-top { font-size: 30px; display: block; margin-bottom: 10px; }
.p-head h3 { font-size: 1.5rem; font-weight: 800; color: #333; margin: 0; }
.p-price-tag { font-size: 1.8rem; font-weight: 800; color: #e74c3c; margin: 10px 0; }
.p-desc { font-size: 13px; color: #888; margin-bottom: 20px; }
.p-features-list { list-style: none; padding: 0; text-align: left; margin-bottom: 30px; }
.p-features-list li { font-size: 13.5px; padding: 8px 0; border-bottom: 1px solid #f9f9f9; color: #555; display: flex; gap: 10px; }
.p-features-list li i { color: #28a745; margin-top: 3px; }

.p-btn-main { 
    border:none;
    display: block; 
    padding: 12px; 
    background: #007bff; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 12px; 
    font-weight: 700; 
    transition: 0.3s; 
    cursor: pointer;
}
.p-btn-main:hover { 
    background: #0056b3; 
    box-shadow: 0 5px 15px rgba(0,123,255,0.3); 
}

/* VIP Colors */
.popular { border: 2px solid #cd7f32; }
.p-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #cd7f32; color: #fff; padding: 5px 20px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.vip1 { border: 2px solid #C0C0C0; }
.super-vip { border: 2px solid #FFD700; background: #fffdf0; }
.super-vip .p-btn-main { background: #FFD700; color: #000; }

/* BẢNG SO SÁNH */
.comparison-modern { 
    max-width: 1200px; 
    margin: 30px auto !important; 
    padding: 0 20px; }
.comp-header { text-align: center; margin-bottom: 30px; }

.highlight { background: rgba(205,127,50,0.03) !important; color: #cd7f32 !important; font-weight: 700; }
.super { background: rgba(255,215,0,0.05) !important; color: #b8860b !important; font-weight: 700; }
.comp-table tr:hover td { background: #fcfcfc; }

@media (max-width: 992px) { .pricing-grid-3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid-3col { grid-template-columns: 1fr; } }

/* Hỗ trợ cuộn ngang trên điện thoại/tablet */
/* Container bao bọc để tạo khung cuộn */
.table-responsive-v3 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Cuộn mượt trên iOS */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    background: #fff;
}

.comp-table {
    width: 100%;
    border-collapse: separate; /* Quan trọng để sticky hoạt động chuẩn */
    border-spacing: 0;
    min-width: 900px; /* Độ rộng tối thiểu để không bị bóp nghẹt chữ */
}

.feature-label {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #fafafa !important;
    font-weight: 700;
    color: #333;
    border-right: 2px solid #eee !important;
    box-shadow: 4px 0 8px rgba(0,0,0,0.05);
    text-align: left !important;
    padding: 15px 20px !important; /* Tạo khoảng trống 2 bên cho thoáng */
    
    /* Cấu hình quan trọng để tự fix chiều rộng theo chữ */
    white-space: nowrap; /* Không cho phép xuống dòng */
    width: 1px; /* Mẹo để trình duyệt ưu tiên giá trị max-content bên dưới */
    min-width: max-content; /* Ép cột rộng bằng dòng chữ dài nhất */
}

/* CỐ ĐỊNH Ô GÓC TRÊN CÙNG (CHỮ QUYỀN LỢI) */
.comp-table thead th.sticky-col {
    position: sticky;
    left: 0;
    z-index: 11;
    text-align: center;
    background-color: #fcfcfc;
    border-right: 2px solid #eee;
    white-space: nowrap;
    width: 1px;
    min-width: max-content;
}
.comp-table tbody td { 
    padding: 15px 10px; 
    font-size: 13px; 
    color: #666; 
    border-bottom: 1px solid #f5f5f5; 
}

.comp-table td:not(.feature-label), 
.comp-table th:not(.sticky-col) {
    min-width: max-content; /* Đảm bảo các gói FREE, VIP... vẫn đủ rộng để đọc */
    padding: 15px 10px;
}
/* Tăng trải nghiệm người dùng trên Mobile */
@media (max-width: 768px) {
    .comp-table {
        min-width: 1100px; /* Ép bảng rộng hơn chút nữa trên mobile để thoáng chữ */
    }
    .feature-label {
        min-width: 140px; /* Cột tiêu đề chiếm diện tích vừa đủ */
    }
    .comp-table td, .comp-table th {
        padding: 12px 10px;
        font-size: 12px;
    }
}


/* ////////////////////////////////////////////// modal đăng tin */

/* 1. Reset & Scrollbar */
#modalProperty .modal-body::-webkit-scrollbar { width: 5px;z-index:100000; }
#modalProperty .modal-body::-webkit-scrollbar-thumb { background: #f37201; border-radius: 10px; }

/* 2. UI Elements & Cards */
.brand-square { width: 4px; height: 24px; background: #f37201; border-radius: 2px; }
.ui-card { background: #fff; border: 1px solid #eef0f2; border-radius: 16px; padding: 20px; transition: 0.3s; }
.ui-card.shadow-sm { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important; }
.ui-card-header { font-size: 11px; font-weight: 800; color: #475569; letter-spacing: 1px; margin-bottom: 20px; text-transform: uppercase; }

/* 3. Input Styling */
.ui-label { font-size: 11px; font-weight: 700; color: #94a3b8; margin-bottom: 6px; display: block; text-transform: uppercase; }
.ui-input { 
    border: 1.5px solid #f1f5f9; 
    border-radius: 10px; 
    font-size: 14px; 
    background: #f8fafc; 
    transition: 0.3s; 
    padding: 6px 10px; 
    width: 100%; }
.ui-input:focus { border-color: #f37201; background: #fff; box-shadow: 0 0 0 4px rgba(243, 114, 1, 0.1); outline: none; }

.ui-input-group { border: 1.5px solid #f1f5f9; border-radius: 10px; overflow: hidden; background: #f8fafc; display: flex; align-items: center; }
.ui-input-group span { background: #f1f5f9; font-size: 12px; border: none; font-weight: 700; color: #64748b; padding: 0 12px; height: 100%; display: flex; align-items: center; }

/* 4. Amenity Box */
.amenity-box-v6 { 
    display: flex; 
    align-items: center; 
    padding: 5px; 
    background: #fafbfc; 
    border: 1px solid #f1f5f9; 
    border-radius: 10px; 
    transition: 0.2s; 
}
.amenity-box-v6:hover { border-color: #f37201; background: #fffaf5; }
.qty-v6 { width: 35px; border: none; background: #f1f5f9; border-radius: 6px; text-align: center; font-size: 11px; font-weight: 700; color: #f37201; padding: 4px 0; }
.brand-check:checked { background-color: #f37201; border-color: #f37201; }

/* 5. PRICE GLASS CARD - ĐÃ TỐI ƯU HÓA */
.price-glass-v6 { 
    background: rgba(30, 41, 59, 0.95); 
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 20px; padding: 25px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-label { font-size: 11px; font-weight: 700; color: rgba(255, 255, 255, 0.9) !important; letter-spacing: 1px; text-transform: uppercase; }
.glass-label-sub { font-size: 11px; color: rgba(255, 255, 255, 0.75) !important; font-weight: 600; margin-bottom: 6px; display: block; }

.price-big-input { 
    background: transparent; border: none; border-bottom: 2px solid #f37201; 
    color: #f37201 !important; font-size: 22px; font-weight: 800; 
    width: 100%; outline: none; transition: 0.3s;
}

.text-conversion-v6 { background: transparent; border: none; color: rgba(255, 255, 255, 0.5) !important; font-size: 12px; font-weight: 500; width: 100%; outline: none; }

.input-v6-dark { 
    background: rgba(255, 255, 255, 0.08) !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; 
    border-radius: 8px; color: #fff !important; padding: 8px 12px; width: 100%; font-size: 13px; transition: 0.3s;
}
.input-v6-dark:focus { background: rgba(255, 255, 255, 0.12) !important; border-color: #f37201 !important; }
.input-v6-dark::placeholder { color: rgba(255, 255, 255, 0.3) !important; }

/* FIX LỖI SELECT OPTIONS */
.input-v6-dark option { background-color: #1e293b !important; color: #ffffff !important; }

/* 6. Gói Tin & Nâng Cấp */
.zone-card-v6 { cursor: pointer; }
.zone-inner { transition: 0.3s; background: #fff; border: 1px solid #f1f5f9; border-radius: 10px; padding: 12px; position: relative; }
.zone-inner:hover { border-color: #f37201 !important; transform: translateY(-3px); }
.zone-checkbox:checked + .zone-inner { border-color: #f37201 !important; background-color: #fff9f4 !important; box-shadow: 0 5px 15px rgba(243, 114, 1, 0.1); }
.check-mark-v6 { position: absolute; top: 5px; right: 8px; display: none; font-size: 16px; color: #28a745; }
.zone-checkbox:checked + .zone-inner .check-mark-v6 { display: block; }
.zone-checkbox:checked + .zone-inner .date-input-v6 { display: block; }

.price-tag-v6 { color: #d9534f; font-weight: 800; font-size: 14px; }
.date-input-v6 input { font-size: 11px; border-radius: 6px; }

/* 7. Brand Button */
.btn-brand-v6 { 
    background: #f37201; color: white; border: none; border-radius: 12px; 
    font-weight: 800; font-size: 14px; transition: 0.3s; 
    box-shadow: 0 10px 20px rgba(243, 114, 1, 0.2); 
    display: block; width: 100%; padding: 12px;
}
.btn-brand-v6:hover { background: #d66401; transform: translateY(-2px); box-shadow: 0 15px 25px rgba(243, 114, 1, 0.3); color: white; }

/* 8. Responsive */
@media (max-width: 991px) {
    #modalProperty .modal-content { height: auto; }
    .border-start { border: none !important; border-top: 1px solid #f1f5f9 !important; }
}
@media (min-width: 768px) {
    .border-end { border-right: 1px solid #f1f5f9 !important; }
}



.is-locked-blur {
    /* Giảm blur xuống một chút để thấy mờ mờ tên khu vực */
    filter: blur(0.1px); 
    opacity: 0.1; /* Tăng độ hiển thị lên để thấy rõ màu sắc */
    pointer-events: none;
    user-select: none;
}

/* 2. Lớp phủ khóa - Làm mỏng và trong suốt hơn */
.zone-lock-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 20;
    cursor: pointer;
    border-radius: 10px;
    /* Dùng backdrop-filter để làm nhòe trực tiếp trên overlay */
    backdrop-filter: blur(1px); 
    background: rgba(255, 255, 255, 0.1); /* Phủ một lớp trắng cực mỏng */
    transition: 0.3s;
}

/* 3. Nút thông báo Đăng nhập/Nạp tiền */
.zone-lock-overlay span {
    background: #f37201; /* Màu cam thương hiệu */
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(243, 114, 1, 0.3);
    text-transform: uppercase;
    transform: translateY(10px); /* Đẩy xuống một chút cho cân đối */
}

/* Biểu tượng ổ khóa nhỏ gọn hơn */
.zone-lock-overlay i { 
    color: #f37201; 
    font-size: 12px; 
    background: #fff; 
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 4px;
}

/* Hiệu ứng khi rê chuột vào gói bị khóa */
.zone-lock-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
}


/*/////////////////////// code nay luc chon ngay thang cua goi tin*/

.date-options-v6 {
    border-top: 1px dashed #ddd;
    padding-top: 8px;
    text-align: left;
}
.small-label {
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    display: block;
}
.date-options-v6 .form-control-sm {
    font-size: 11px;
    height: 28px;
    padding: 2px 5px;
    background: #fff;
    border: 1px solid #e2e8f0;
}
/* Hiệu ứng khi card được chọn */
.zone-card-v6.border-primary {
    border: 1.5px solid #f37201 !important;
}


.billing-details {
    padding: 5px 0;
}

#balance-status-msg {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Khi đủ tiền */
.msg-success {
    background: #f0fdf4;
    border-color: #bcf0da !important;
    color: #166534;
}

/* Khi thiếu tiền */
.msg-error {
    background: #fef2f2;
    border-color: #fecaca !important;
    color: #991b1b;
}

.text-decoration-underline:hover {
    color: #f37201 !important;
}

/* Hiệu ứng nút khi bị vô hiệu hóa */
#btn-submit-post:disabled {
    background: #cbd5e1 !important;
    box-shadow: none !important;
    cursor: not-allowed;
}


/*///////////////////////////////////////////////// albuum anh*/

/* Nút bấm Sticky Bottom ở cột phải */
.col-lg-4 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sticky-action-v6 {
    position: sticky;
    bottom: 0;
    background: #f8fafb; /* Đồng màu với nền cột phải */
    z-index: 100;
}

.btn-brand-v6 {
    background: linear-gradient(135deg, #f37201 0%, #ff9a44 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-brand-v6:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(243, 114, 1, 0.4);
}