/* Global Styles */
body {
    font-family: 'Inter';
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #D0D0D0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000 !important;
    text-decoration: none;
}

.apple-logo {
    max-width: 264px;
    /* height: auto; */
}


.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 12px;
    font-weight: 400;
    margin: 0 1rem;
    position: relative;
    text-decoration: none;
}


/* Mobile navbar - column layout */
@media (max-width: 991.98px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-nav {
        flex-direction: row;
        gap: 30px ;
    }
    
    .navbar-nav .nav-link:not(:last-child)::after {
        display: none;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .apple-logo {
        /* width: 150px; */
    }
}

/* Desktop navbar - row layout */
@media (min-width: 992px) {
    .navbar-content {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .navbar-nav {
        flex-direction: row;
        gap: 30px;
    }
}

/* Announcement Banner */
.announcement-banner {
    background-color: #D0D0D0;
    padding: 15px 0;
    text-align: center;
}

.announcement-text {
    font-size: 18px;
    color: #000;
    margin: 0;
    font-weight: 400;
}

/* Main Content Section */
.two-column-section {
    background-color: #000;
    padding-top: 80px;
    /* min-height: 80vh; */
}


.product-card {
    background-color: #000;
    color: #fff;
    /* padding: 2rem; */
    height: 100%;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem;
    text-align: left;
}

.product-image-container {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 225px;
}


.product-options {
    margin-bottom: 2rem;
}

.storage-options {
    margin-bottom: 44px;
}

.storage-options h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.option-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.option-item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 0.8rem;
    accent-color: #007AFF;
    appearance: none;
    border: 1px solid #6D6565;
    border-radius: 3px;
    background-color: #4A4A4A;
    position: relative;
    cursor: pointer;
}

.option-item input[type="radio"]:checked {
    background-color: #007AFF;
    border-color: #007AFF;
}

.option-item input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

/* Custom radio button styling */
input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #6D6565;
    border-radius: 3px;
    background-color: #4A4A4A;
    position: relative;
    cursor: pointer;
}

input[type="radio"]:checked {
    background-color: #007AFF;
    border-color: #007AFF;
}

input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

/* Color-specific radio button styling */
#pro-silver {
    background-color: #bdb1b1;
    border-color: #F5F5F5;
}

#pro-silver:checked {
    background-color: #bdb1b1;
    border-color: #F5F5F5;
}

#pro-silver:checked::after {
    color: #000;
}

#pro-orange {
    background-color: #F87D00;
    border-color: #F87D00;
}

#pro-orange:checked {
    background-color: #F87D00;
    border-color: #F87D00;
}

#pro-orange:checked::after {
    color: #fff;
}

#pro-blue {
    background-color: #32374A;
    border-color: #32374A;
}

#pro-blue:checked {
    background-color: #32374A;
    border-color: #32374A;
}

#pro-blue:checked::after {
    color: #fff;
}

/* iPhone Pro Max color-specific radio button styling */
#pro-max-silver {
    background-color: #bdb1b1;
    border-color: #bdb1b1;
}

#pro-max-silver:checked {
    background-color: #bdb1b1;
    border-color: #bdb1b1;
}

#pro-max-silver:checked::after {
    color: #000;
}

#pro-max-orange {
    background-color: #F87D00;
    border-color: #F87D00;
}

#pro-max-orange:checked {
    background-color: #F87D00;
    border-color: #F87D00;
}

#pro-max-orange:checked::after {
    color: #fff;
}

#pro-max-blue {
    background-color: #32374A;
    border-color: #32374A;
}

#pro-max-blue:checked {
    background-color: #32374A;
    border-color: #32374A;
}

#pro-max-blue:checked::after {
    color: #fff;
}

/* iPhone Air color-specific radio button styling */
#air-space-black {
    background-color: #29292b;
    border-color: #29292b;
}

#air-space-black:checked {
    background-color: #29292b;
    border-color: #29292b;
}

#air-space-black:checked::after {
    color: #fff;
}

#air-light-cloud {
    background-color: #ececea;
    border-color: #ececea;
}

#air-light-cloud:checked {
    background-color: #ececea;
    border-color: #ececea;
}

#air-light-cloud:checked::after {
    color: #000;
}

#air-cloud-white {
    background-color: #eae4d8;
    border-color: #eae4d8;
}

#air-cloud-white:checked {
    background-color: #eae4d8;
    border-color: #eae4d8;
}

#air-cloud-white:checked::after {
    color: #000;
}

#air-sky-blue {
    background-color: #dbe5ee;
    border-color: #dbe5ee;
}

#air-sky-blue:checked {
    background-color: #dbe5ee;
    border-color: #dbe5ee;
}

#air-sky-blue:checked::after {
    color: #000;
}

/* iPhone 17 color-specific radio button styling */
#iphone-17-black {
    background-color: #000;
    border-color: #000;
}

#iphone-17-black:checked {
    background-color: #000;
    border-color: #000;
}

#iphone-17-black:checked::after {
    color: #fff;
}

#iphone-17-white {
    background-color: #d3d3d2;
    border-color: #d3d3d2;
}

#iphone-17-white:checked {
    background-color: #d3d3d2;
    border-color: #d3d3d2;
}

#iphone-17-white:checked::after {
    color: #000;
}

#iphone-17-mist-blue {
    background-color: #bacae1;
    border-color: #bacae1;
}

#iphone-17-mist-blue:checked {
    background-color: #bacae1;
    border-color: #bacae1;
}

#iphone-17-mist-blue:checked::after {
    color: #000;
}

#iphone-17-lavender {
    background-color: #e1d4e6;
    border-color: #e1d4e6;
}

#iphone-17-lavender:checked {
    background-color: #e1d4e6;
    border-color: #e1d4e6;
}

#iphone-17-lavender:checked::after {
    color: #000;
}

#iphone-17-sage {
    background-color: #c6d0ab;
    border-color: #c6d0ab;
}

#iphone-17-sage:checked {
    background-color: #c6d0ab;
    border-color: #c6d0ab;
}

#iphone-17-sage:checked::after {
    color: #000;
}

/* Apple Watch SE 3rd Gen color-specific radio button styling */
#se3-midnight {
    background-color: #25282f;
    border-color: #25282f;
}

#se3-midnight:checked {
    background-color: #25282f;
    border-color: #25282f;
}

#se3-midnight:checked::after {
    color: #fff;
}

#se3-starlight {
    background-color: #cbbcb5;
    border-color: #cbbcb5;
}

#se3-starlight:checked {
    background-color: #cbbcb5;
    border-color: #cbbcb5;
}

#se3-starlight:checked::after {
    color: #000;
}

/* Apple Watch Series 11 color-specific radio button styling */
#series11-silver {
    background-color: #b1b0b2;
    border-color: #b1b0b2;
}

#series11-silver:checked {
    background-color: #b1b0b2;
    border-color: #b1b0b2;
}

#series11-silver:checked::after {
    color: #000;
}

#series11-jet-black {
    background-color: #050507;
    border-color: #757576;
}

#series11-jet-black:checked {
    background-color: #050507;
    border-color: #757576;
}

#series11-jet-black:checked::after {
    color: #fff;
}

#series11-rose-gold {
    background-color: #f2d6c9;
    border-color: #f2d6c9;
}

#series11-rose-gold:checked {
    background-color: #f2d6c9;
    border-color: #f2d6c9;
}

#series11-rose-gold:checked::after {
    color: #000;
}

#series11-space-gray {
    background-color: #757371;
    border-color: #757371;
}

#series11-space-gray:checked {
    background-color: #757371;
    border-color: #757371;
}

#series11-space-gray:checked::after {
    color: #fff;
}

/* Apple Watch Ultra 3rd Gen color-specific radio button styling */
#ultra3-black {
    background-color: #131313;
    border-color: #131313;
}

#ultra3-black:checked {
    background-color: #68605f;
    border-color: #68605f;
}

#ultra3-black:checked::after {
    color: #fff;
}

#ultra3-natural {
    background-color: #b3a99e;
    border-color: #b3a99e;
}

#ultra3-natural:checked {
    background-color: #b3a99e;
    border-color: #b3a99e;
}

#ultra3-natural:checked::after {
    color: #000;
}

.option-item label {
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin: 0;
}

.option-item-watch-series {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0px !important;
}

.preorder-btn {
    background-color: #007AFF;
    color: #fff;
    border: none;
    padding: 7px 22px;
    font-size: 12px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
    
}

.preorder-btn:hover {
    background-color: #0056CC;
}

.product-description {
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    max-width: 350px;
    text-align: justify;
}

/* Bottom Image */
.bottom-image-container {
    width: 100%;
    /* position: relative; */
    text-align: center;
    background-color: #000;
}

.bottom-image {
    /* width: 100%; */
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-subtitle,
    .reseller-text {
        font-size: 0.7rem;
    }
    
    .announcement-text {
        font-size: 16px;
    }
    
    .product-title {
        /* font-size: 26px; */
        text-align: center;
    }
    
    .product-card {
        /* padding: 1.5rem; */
    }
    
    .two-column-section {
        /* padding: 2rem 0; */
    }
    .product-description {
        font-size: 12px;
        max-width: 100%;
    }
    .bottom-image  {
        width: 100%;
    }

    .product-image-container {
        max-width: 100%;
    }
}


/* Additional responsive adjustments */


/* Ensure proper spacing and alignment */
.row {
    margin: 0;
}

.col-lg-6,
.col-md-12 {
    padding: 0 15px;
}

/* Custom spacing for iPhone columns */
.container.px-5 .row {
    margin: 0 -30px; /* Negative margin to counteract container padding */
}

.container.px-5 .col-lg-6 {
    padding: 0 30px; /* Increased padding for larger gap */
}

/* Ensure images stay at max-width 180px */
.product-image {
    /* max-width: 200px !important; */
    height: 100%;
    border-radius: 10px;
}

/* Responsive adjustments for larger gap */
@media (max-width: 768px) {
    .container.px-5 .row {
        margin: 0 -15px;
    }
    
    .container.px-5 .col-lg-6 {
        padding: 0 15px;
    }
}


@media screen and (min-width: 1200px) {
    .two-column-section .container {
        max-width: 1520px;
    }
}

/* iPhone Air Section Styles */
.one-item-section {
    background-color: #F5F5F5;
    padding: 56px 0 0px 0px;
    /* min-height: 100vh; */
}

.one-item-section-airpods {
    background-color: #F5F5F5 ;
   
}

.one-item-section-seperator {
    margin-top: 5px;
}

.one-product-content {
    max-width: 1200px;
    margin: 0 300px;
    padding: 0 2rem;
}

.one-product-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}

.one-product-title-light {
    font-weight: bold;
    color: #fff;
    margin-bottom: 56px; 
    /* text-align: center; */
    font-size: 32px;
    
}

.one-product-description {
    font-size: 12px;
    color: #333;
    text-align: justify;
    max-width: 560px;
    margin: 0 auto 3rem 0px;
    line-height: 1.6;
    
}

.one-product-description-light {
    font-size: 12px;
    color: #fff;
    text-align: justify;
    max-width: 350px;
    margin: 22px 0px 3rem 0px;
    line-height: 1.6;
}



.main-phone-image {
    flex: 1;
    text-align: center;
}

.phone-main-img-airpod {
    max-width: 227px !important;
}


.phone-screen-img {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
}

.one-product-options {
    padding: 32px 32px 32px 0px;
}


.color-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 0.8rem; */
    max-width: 250px;
}

.one-product-options .option-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.one-product-options .option-item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 0.8rem;
    accent-color: #007AFF;
    appearance: none;
    border: 1px solid #C5C5C5;
    border-radius: 3px;
    background-color: #E5E5E5;
    position: relative;
    cursor: pointer;
}

.one-product-options .option-item input[type="radio"]:checked {
    background-color: #007AFF;
    border-color: #007AFF;
}

.one-product-options .option-item input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.one-product-options .option-item label {
    color: #000;
    font-size: 12px;
    cursor: pointer;
    margin: 0;
}

.one-product-options-light {
    margin-top: 50px;
}

.one-product-options-light .option-item label {
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin: 0;
}

.preorder-btn-air {
    background-color: #007AFF;
    color: #fff;
    border: none;
    padding: 7px 22px;
    font-size: 12px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
    margin-top: 28px;
}

.preorder-btn-air:hover {
    background-color: #0056CC;
}

.bottom-side-image-container {
    text-align: center;
    margin-top: 3rem;
}

.bottom-side-image {
    height: auto;
    border-radius: 10px;
}


.price-display {
    display: flex;
    flex-direction: column;
    font-size: 12px;

}

/* Responsive Design for iPhone Air Section */
@media (max-width: 768px) {
    .one-product-title {
        font-size: 32px;
    }
    
    .one-product-description {
        font-size: 12px;
        padding: 0;
    }

    .preorder-btn {
        width: 100%;
    }
    
    .preorder-btn-air {
        width: 100%;
    }
    
    
    .phone-screen-img {
        max-width: 100px;
    }
    
    .one-product-options {
        padding: 32px 0px 0px 0px;
    }
    
    .color-options-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bottom-side-image {
        width: 100%;
    }

    .one-product-content {
        max-width: 1200px;
        margin: 0px;
        padding: 0px;
    }

    .price-display {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 16px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-text-left,
    .footer-text-center,
    .footer-text-right {
        text-align: center;
        flex: none;
    }

    .magichromantic-img {
        width: 100%;
        max-width: 250px !important;
    }

    .one-product-title-light {
        
        text-align: center;
        
    }

    .site-footer {
        padding-bottom: 20px !important;
    }
    
}

@media screen and (max-width: 1200px) {
    .one-product-content{
        padding: 0px !important;
        margin: 0px !important;
    }
    
    
}

/* Footer Styles */
.site-footer {
    background-color: #f5f5f5;
    padding: 40px 0 30px 0;
    /* margin-top: 60px; */
}

.footer-content {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #CDC9C9;
}

.footer-text-left,
.footer-text-center,
.footer-text-right {
    font-size: 12px;
    color: #000;
    flex: 1;
    text-align: center;
}

.footer-text-left {
    text-align: left;
}

.footer-text-right {
    text-align: right;
}

.footer-link {
    color: #000;
    text-decoration: none;
}

.footer-link:hover {
    color: #000;
    text-decoration: underline;
}


/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}



@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.modal-title {
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

.modal-body {
    padding: 24px;
}

.preorder-form {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input:invalid {
    border-color: #ff3b30;
}

/* Dropdown specific styles */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007AFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.cancel-btn,
.submit-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cancel-btn {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.cancel-btn:hover {
    background-color: #e9ecef;
    color: #333;
}

.submit-btn {
    background-color: #007AFF;
    color: #fff;
}

.submit-btn:hover {
    background-color: #0056CC;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 16px;
    }

    .modal-header button {
        font-size: 12px;
    }

    .modal-title {
        font-size: 18px;
        max-width: 200px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cancel-btn,
    .submit-btn {
        width: 100%;
    }

    .preorder-form {
        font-size: 14px;
    }
    .form-select {
        font-size: 14px;

    }

    .modal-footer button {
        font-size: 14px;
    }
}

/* Terms and Conditions Section Styles */
.terms-section {
    background-color: #000;
    padding: 80px 0;
    min-height: 80vh;
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: left;
    margin-bottom: 3rem;
}

.terms-text {
    color: #fff;
}

.terms-text ul li {
    margin-bottom: 10px;
}

.terms-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Terms Section */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .terms-text p {
        font-size: 12px;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .terms-content {
        padding: 0;
    }

    .terms-text ul li {
        font-size: 12px;
    }
}

@media screen and (max-width: 1200px) {
    .terms-content {
        padding: 0;
    }

    .two-column-section .container {
        /* max-width: 1120px !important; */
    }

    .product-image {
        max-width: 200px !important;
    }


}

/* Video Container Styles */
.video-container {
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0px;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.video-fluid {
    max-width: 560px;
    margin: 0 auto;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-container {
        margin: 50px 0 0px;
        border-radius: 8px;
    }

    .video-fluid {
        width: 100%;
    }
}

/* swal2 */
div:where(.swal2-container) h2:where(.swal2-title) {
    color: black!important;
    font-size: 1.4em!important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: #007AFF!important;
    color: #fff!important;
    border: none!important;
    padding: 5px 25px!important;
    font-size: 18px!important;
    font-weight: 400!important;
    border-radius: 50px!important;
    cursor: pointer!important;
    width: fit-content!important;
    margin-bottom: 1.5rem!important;
    transition: background-color 0.3s ease!important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
    background-color:  black!important;
}