/* Ensure Roboto font is prioritized if available */
body {
    font-family: 'Roboto', sans-serif;
}

/* Style for device quantity selection tabs */
.device-tab {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid rgba(181, 181, 181, 0.34);
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.device-tab:hover:not(.active) {
    background-color: #F3F4F6;
}

.device-tab.active {
    background-color: #000000;
    color: white;
    border-color: #000000;
    box-shadow: 0px 0px 2px #AAAAAA;
}

/* Style for payment cycle selection blocks */
.cycle-block {
    border-width: 1px;
    border-color: rgba(102, 102, 102, 0.5);
}

.cycle-block.selected-cycle-block {
    border-width: 2px;
    border-color: #2060FF;
    background-color: #EFF6FF;
    box-shadow: none;
}

/* Style for small action links */
.action-link {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #006DF0;
    transition: color 0.2s ease-in-out;
}
.action-link:hover {
    text-decoration: underline;
}


/* Container for charts */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1.8 / 1;
}

/* Section title */
.section-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #1F2937; /* text-gray-800 */
    text-align: center;
    margin-bottom: 1rem; /* mb-4 */
}

/* Adjust section title size for small screens (sm) */
@media (min-width: 640px) { /* sm */
    .section-title {
        font-size: 1.5rem; /* text-2xl */
        margin-bottom: 1.5rem; /* mb-6 */
    }
}

/* Adjust section title size for large screens (lg) */
@media (min-width: 1024px) { /* lg */
    .section-title {
        font-size: 1.875rem; /* text-3xl */
    }
}

/* Style for new awards carousel item card */
.new-awards-carousel-item-card {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    border: 1px solid #E5E7EB; /* border-gray-200 */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 180px; /* Minimum height */
    position: relative;
}

/* Adjust padding and min-height for carousel card on small screens (sm) */
@media (min-width: 640px) {
    .new-awards-carousel-item-card {
        padding: 1.5rem;
        min-height: 200px;
    }
}

/* Style for main award text in carousel */
.new-awards-carousel-item-card .award-main-text {
    font-size: 0.875rem; /* text-sm */
    color: #F97316; /* text-orange-500 */
    font-weight: 600; /* font-semibold */
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Adjust main award text size for small screens (sm) */
@media (min-width: 640px) {
    .new-awards-carousel-item-card .award-main-text {
        font-size: 1rem; /* text-base */
    }
}

/* Style for award source text in carousel */
.new-awards-carousel-item-card .award-source-text {
    font-size: 0.75rem; /* text-xs */
    color: #374151; /* text-gray-700 */
    font-weight: 500; /* font-medium */
    text-align: center;
}

/* Adjust award source text size for small screens (sm) */
@media (min-width: 640px) {
    .new-awards-carousel-item-card .award-source-text {
        font-size: 0.875rem; /* text-sm */
    }
}

/* Style for active carousel navigation dot */
.new-awards-dot.active {
    background-color: #1F2937; /* bg-gray-800 */
}

/* Style for carousel navigation dot */
.new-awards-dot {
    background-color: #D1D5DB; /* bg-gray-300 */
}

/* Style for carousel navigation buttons (Prev/Next) */
.carousel-nav-btn {
    background-color: rgba(255, 255, 255, 0.5);
    color: #374151; /* text-gray-700 */
    border-radius: 9999px; /* rounded-full */
    padding: 0.5rem; /* p-2 */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); /* shadow-md */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

/* Style for carousel navigation button hover */
.carousel-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

/* Position for carousel "Prev" button */
#newAwardsPrevBtn {
    left: 0.5rem;
}

/* Position for carousel "Next" button */
#newAwardsNextBtn {
    right: 0.5rem;
}

/* Style for small action links */
.action-link {
    font-size: 16px;
    line-height: 24px;
    color: #006DF0;
}

@media (min-width: 640px) {
    .action-link {
        font-size: 16px; /
    }
}

/* Action link size for small screens (sm) */
@media (min-width: 640px) {
    .action-link {
        font-size: 0.875rem; /* text-sm */
    }
}
/* Action link size for medium screens (md) */
@media (min-width: 768px) {
    .action-link {
        font-size: 0.875rem; /* text-sm, same as sm */
    }
}

/* Style for OS select button */
.os-select-btn {
    font-size: 20px;
    line-height: 34px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-width: 2px;
    border-radius: 3px;
    font-weight: 400;
    flex-grow: 1;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.os-select-btn.active {
    background-color: #2060FF;
    border-color: #2060FF;
    color: white;
}

.os-select-btn:not(.active) {
    color: #0066FF;
    border-color: #0066FF;
    background-color: white;
}

.os-select-btn:hover:not(.active) {
    background-color: #f0f5ff; /* Very light blue for hover effect */
}

/* Style for feature category title */
.feature-category-title {
    font-size: 25px;
    font-weight: 900; /* equivalent to font-black */
    color: #333333;
    margin-bottom: 0.75rem; /* mb-3 */
    margin-top: 1.5rem; /* mt-6 */
}

/* Style for a feature item (header) */
.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0; /* py-2.5 */
    cursor: pointer;
}

/* Style for a feature item title */
.feature-item-title {
    font-size: 16px;
    color: #2060FF;
    font-weight: 400; /* equivalent to font-normal */
}

/* Style for a feature item icon (+/- sign) */
.feature-item-icon {
    color: #9CA3AF; /* text-gray-400 */
    font-size: 1rem; /* text-base, adjustable */
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D1D5DB; /* border-gray-300 */
    border-radius: 9999px; /* rounded-full */
    transition: transform 0.2s ease-in-out;
    font-weight: normal; /* Ensure + sign is not bold */
}

/* Style for a feature description (hidden by default) */
.feature-description {
    display: none;
    padding: 0.75rem 0.5rem; /* p-3 px-2 */
    font-size: 0.875rem; /* text-sm */
    color: #4B5563; /* text-gray-600 */
    background-color: #F9FAFB; /* bg-gray-50 */
    border-radius: 0.25rem; /* rounded-sm */
    margin-top: 0.5rem; /* mt-2 */
    line-height: 1.6;
}

/* Feature description size for small screens (sm) */
@media (min-width: 640px) {
    .feature-description {
         font-size: 1rem; /* text-base */
    }
}

/* Wrapper for payment status page */
.payment-status-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: white; 
}

/* Main content of payment status page */
.payment-status-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem; /* p-4 */
}

/* Success/failure icon on payment status page */
.payment-status-icon-success, .payment-status-icon-failure {
    width: 5rem; /* w-20 */
    height: 5rem; /* h-20 */
    border-radius: 9999px; /* rounded-full */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem; /* mb-6 */
}
.payment-status-icon-success { background-color: #34D399; } /* bg-green-500 */
.payment-status-icon-failure { background-color: #DC2626; } /* bg-red-600 */

/* SVG inside icon */
.payment-status-icon-svg {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    color: white;
}

/* Title on payment status page */
.payment-status-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #1F2937; /* text-gray-800 */
    margin-bottom: 0.75rem; /* mb-3 */
}
@media (min-width: 640px) {
    .payment-status-title { font-size: 1.5rem; } /* sm:text-2xl */
}

/* Message on payment status page */
.payment-status-message {
    font-size: 0.875rem; /* text-sm */
    color: #4B5563; /* text-gray-600 */
    margin-bottom: 1rem; /* mb-4 */
    max-width: 400px;
    line-height: 1.6;
}
@media (min-width: 640px) {
    .payment-status-message { font-size: 1rem; } /* sm:text-base */
}

/* Footer of payment status page  */
.payment-status-footer {
    width: 100%;
    /* Add padding-bottom to create space with bottom of screen */
    padding: 1rem 1rem 1.5rem 1rem; /* equivalent to p-4 on sides and p-6 on bottom */
    background-color: transparent; /* Transparent background to see gradient */
    flex-shrink: 0; /* Prevent footer from shrinking */
}

/* Main button (Red, rounded) */
.payment-status-button-primary {
    display: block;
    width: 100%;
    background-color: #DC2626; /* bg-red-600 */
    color: white;
    font-weight: 600; /* font-semibold */
    font-size: 1rem; /* text-base */
    padding: 0.875rem 1.5rem; /* py-3.5 px-6 */
    border-radius: 9999px; /* rounded-full */
    text-decoration: none;
    transition: background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-status-button-primary:hover {
    background-color: #B91C1C; /* hover:bg-red-700 */
}

.payment-status-button-text-link:hover {
    background-color: #FEE2E2; /* hover:bg-red-50 */
}

/* Style for renewal action buttons */
.renewal-action-button {
    min-width: 140px; /* Minimum width */
    text-align: center;
    font-size: 0.875rem; /* text-sm */
    padding-top: 0.5rem; /* py-2 */
    padding-bottom: 0.5rem;
    padding-left: 0.75rem; /* px-3 */
    padding-right: 0.75rem;
}

/* Adjust renewal action button size for small screens (sm) */
@media (min-width: 640px) {
    .renewal-action-button {
        font-size: 0.875rem; /* text-sm, unchanged */
    }
}

/* Copy feedback (fade out) */
.copy-feedback {
    transition: opacity 0.5s ease-in-out;
}

/* Left align for guide header title and description */
#userGuideView .guide-header h1,
#userGuideView .guide-header p {
    text-align: left;
}

/* Style for accordion section title in guide */
.guide-dropdown-title {
    background-color: #FFFFFF; /* bg-white */
    padding: 1rem 1.25rem; /* p-4 px-5 */
    border: 1px solid #E5E7EB; /* border border-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500; /* font-medium */
    color: #111827; /* text-gray-900 */
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    text-align: left;
}

/* Style for accordion section title hover */
.guide-dropdown-title:hover {
    background-color: #F9FAFB; /* hover:bg-gray-50 */
    border-color: #D1D5DB; /* hover:border-gray-300 */
}

/* Style for active (open) accordion section title */
.guide-dropdown-title.active {
    background-color: #F9FAFB; /* bg-gray-50 */
    border-color: #93C5FD; /* border-blue-300 */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Style for accordion section content (hidden by default) */
.guide-dropdown-content {
    display: none;
    padding: 1.25rem; /* p-5 */
    border: 1px solid #93C5FD; /* border border-blue-300 */
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem; /* rounded-b-lg */
    background-color: #FFFFFF; /* bg-white */
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* shadow-md (lighter) */
}

/* Style for images in accordion content */
.guide-dropdown-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem; /* rounded-md */
    margin-top: 0.75rem; /* my-3 */
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* shadow-sm */
    border: 1px solid #E5E7EB; /* border border-gray-200 */
}

/* Style for a step in the guide */
.guide-step {
    margin-bottom: 1.5rem; /* mb-6 */
}

/* Style for a step title (H4) */
.guide-step h4 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: #1E40AF; /* text-blue-800 */
    margin-bottom: 0.5rem; /* mb-2 */
    text-align: left;
}

/* Style for paragraph and list in a step */
.guide-step p, .guide-step ul {
    font-size: 0.95rem; /* Close to text-base */
    color: #374151; /* text-gray-700 */
    line-height: 1.6;
    margin-bottom: 0.5rem; /* mb-2 */
    text-align: left;
}

/* Style for list (ul) in a step */
.guide-step ul {
    list-style-type: disc;
    padding-left: 1.25rem; /* pl-5 */
}

/* Style for dropdown icon */
.guide-dropdown-icon {
    transition: transform 0.3s ease;
    color: #6B7280; /* text-gray-500 */
}

/* Style for dropdown icon when accordion is active (rotated) */
.guide-dropdown-title.active .guide-dropdown-icon {
    transform: rotate(180deg);
    color: #3B82F6; /* text-blue-500 */
}

/* Container for copyable link */
.copyable-link-container {
    display: inline-flex;
    align-items: center;
    position: relative; /* For absolute feedback positioning */
}

/* Copy icon in container */
.copyable-link-container .copy-icon {
    cursor: pointer;
    margin-left: 0.3rem; /* ml-1.5 */
    color: #3B82F6; /* text-blue-500 */
}
.copyable-link-container .copy-icon:hover {
    color: #1D4ED8; /* hover:text-blue-700 */
}

/* Feedback when copying link */
.copyable-link-container .link-copy-feedback {
    font-size: 0.75rem; /* text-xs */
    color: #16A34A; /* text-green-600 */
    margin-left: 0.3rem; /* ml-1.5 */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Spinner for API call */
.api-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-top-color: #DC2626;
    animation: spin 1s ease-in-out infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Overlay for spinner to block interaction */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Faded black overlay */
    z-index: 9999; /* Below spinner, above other content */
    display: flex; /* To center spinner if spinner is child of overlay */
    align-items: center;
    justify-content: center;
}
/* Polling message */
.polling-message {
    position: fixed;
    top: calc(50% + 40px + 20px); /* Position below spinner (36px/2 + 10px padding + 40px offset) */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.875rem; /* text-sm */
    z-index: 10001; /* Above spinner overlay */
}

/* Style for OS select buttons */
.os-guide-btn {
    border: 1px solid #3b82f6; /* blue-500 */
    transition: all 0.2s ease-in-out;
}

/* Style for unselected (default) OS button */
.os-guide-btn:not(.active-os-btn) {
    background-color: white;
    color: #3b82f6; /* blue-500 */
}

/* Style for unselected OS button hover */
.os-guide-btn:not(.active-os-btn):hover {
    background-color: #eff6ff; /* blue-50 */
}

/* Style for selected (active) OS button */
.os-guide-btn.active-os-btn {
    background-color: #3b82f6; /* blue-500 */
    color: white;
    border-color: #3b82f6; /* blue-500 */
}

/* Style for selected OS button hover */
.os-guide-btn.active-os-btn:hover {
     background-color: #2563eb; /* blue-600, slightly darker */
     border-color: #2563eb; /* blue-600 */
}

/* --- Accordion animation effects --- */
.guide-accordion-icon {
    height: 1.25rem; /* equivalent to h-5 in Tailwind */
    width: 1.25rem;  /* equivalent to w-5 in Tailwind */
    color: #6b7280;  /* equivalent to text-gray-500 */
    transition: transform 0.3s ease-in-out;
}

/* Class to rotate icon when accordion is open */
.guide-accordion-icon.rotate-180 {
    transform: rotate(180deg);
}
.accordion-content {
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}
.accordion-content:not(.hidden) {
    max-height: 1000px; /* Large enough value to contain content */
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.accordion-icon.rotate-180 {
    transform: rotate(180deg);
}
.guide-accordion-icon {
    height: 1.25rem; /* equivalent to h-5 in Tailwind */
    width: 1.25rem;  /* equivalent to w-5 in Tailwind */
    color: #6b7280;  /* equivalent to text-gray-500 */
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Class to rotate icon when accordion is open */
.guide-accordion-icon.rotate-180 {
    transform: rotate(180deg);
}

/* Smooth transition for accordion content */
.accordion-content {
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}
.accordion-content:not(.hidden) {
    max-height: 1000px; /* Large enough value to contain content */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* --- Style for OS select buttons (Unchanged) --- */
.os-guide-btn {
    border: 1px solid #3b82f6;
    transition: all 0.2s ease-in-out;
}
.os-guide-btn:not(.active-os-btn) {
    background-color: white;
    color: #3b82f6;
}
.os-guide-btn:not(.active-os-btn):hover {
    background-color: #eff6ff;
}
.os-guide-btn.active-os-btn {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}
.os-guide-btn.active-os-btn:hover {
     background-color: #2563eb;
     border-color: #2563eb;
}
/* Style for OS badge in search results */
.os-badge {
    display: inline-block;
    background-color: #e0e7ff; /* Tailwind's indigo-100 */
    color: #4338ca; /* Tailwind's indigo-700 */
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.75rem;
    vertical-align: middle;
    line-height: 1;
}
.success-gradient-bg {
    background: linear-gradient(180deg, #fdecec 0%, #f8f9fa 50%, #ffffff 100%);
}

#paymentSuccessView main, 
#paymentSuccessView footer {
    max-width: 420px; /* Equivalent to max-w-sm */
    margin-left: auto;
    margin-right: auto;
}

.failure-gradient-bg {
    background: linear-gradient(180deg, #fdecec 0%, #f8f9fa 50%, #ffffff 100%);
}
/* Common class for cards, used by JS */
.license-card-wrapper {
    background: #FFFFFF;
    border: 1px solid #E5E7EB; /* border-gray-200 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06); /* shadow-md */
    border-radius: 0.75rem; /* rounded-xl */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    width: 100%; /* Keep to make card fill container */
    /* Remove max-width and margin auto */
}

/* Style for card when selected (expanded) */
.license-card-wrapper.is-active {
    background: #EFF6FF; /* bg-blue-50 */
    border: 1px solid rgba(0, 123, 255, 0.5);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

/* Card header */
.license-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.875rem; /* 16px 14px */
}

.license-package-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-left: 0.75rem; /* Add spacing from logo */
}

/* Main action button in header */
.license-action-btn {
    font-size: 10px;
    font-weight: 700;
    line-height: 22px;
    padding: 0 0.625rem; /* 10px */
    border-radius: 9999px; /* rounded-full */
    transition: background-color 0.2s;
    white-space: nowrap;
}

/* Card body, contains details */
.license-card-body {
    padding: 0 0.875rem 1rem; /* 14px */
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 16px */
}

/* Info field (Account/Password) */
.license-info-field {
    position: relative;
    margin-top: 0.5rem; /* Add spacing so label doesn't overlap border */
}

.license-info-field > label {
    position: absolute;
    top: -0.6rem; /* Raise label above border */
    left: 0.75rem;
    padding: 0 0.25rem;
    font-size: 12px;
    font-weight: 500;
    color: #676767;
    background-color: #FFFFFF; /* Card background when not active */
}

.license-card-wrapper.is-active .license-info-field > label {
    background-color: #EFF6FF; /* Card background when active */
}

.license-info-input-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem; /* 8px 16px */
    gap: 1rem; /* 16px */
    background: #F3F3F3;
    border: 1px solid #A8A8A9;
    border-radius: 10px;
}

.license-info-input-wrapper input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #676767;
}

/* Secondary action buttons in card body */
.license-actions-container {
    display: flex;
    gap: 1rem; /* 16px */
}

.license-secondary-btn {
    flex: 1;
    box-sizing: border-box;
    text-align: center;
    padding-top: 0.625rem; /* 10px */
    padding-bottom: 0.625rem;
    background: #FFFFFF;
    border: 0.5px solid #007BFF;
    border-radius: 30px;
    color: #007BFF;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.license-secondary-btn:hover {
    background-color: #EBF5FF;
}

/* Card footer */
.license-card-footer {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    gap: 0.625rem;
    background: rgba(0, 109, 240, 0.2);
}

#autoRenewCheckbox {
    transform: scale(1.5);
    margin-right: 0.75rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #4B5563;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    font-size: 0.875rem;
}

.back-button:hover {
    color: #1F2937;
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

/* Basic style for all buttons */
.payment-status-button {
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    border-radius: 40px;
    padding: 14px 24px;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

/* Style for main button (Red) */
.payment-status-button-primary {
    background-color: #DC2626;
    color: #FFFFFF;
}

.payment-status-button-primary:hover {
    background-color: #B91C1C;
}

/* Style for secondary button (White, bordered) */
.payment-status-button-secondary {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #CCCCCC;
}

.payment-status-button-secondary:hover {
    background-color: #f3f4f6;
}

/* Style for text button (transparent) */
.payment-status-button-text {
    background-color: transparent;
    color: #000000;
    border: none;
    box-shadow: none;
    padding: 12px 24px; /* Slightly reduced padding for text button */
}

.payment-status-button-text:hover {
    background-color: #f3f4f6;
}

/* Container for buttons in footer */
.payment-status-footer .max-w-sm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive for button font size and padding */
@media (min-width: 640px) {
    .payment-status-button {
        font-size: 1.125rem;
        line-height: 1.75rem;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }
}

/* === STANDARD CSS FOR SUCCESS SCREEN BUTTONS === */

.payment-status-footer {
    /* Skip position: absolute for more flexible layout on screens */
    /* These properties will be adjusted by the inner container */
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.button-container {
    /* Auto layout from design */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px; /* Spacing between buttons */
    width: 100%; /* Full width of footer */
    max-width: 359px; /* Max width from design */
    margin: 0 auto; /* Center */
}

.button-container button {
    /* Common settings for buttons */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%; /* Full width of container */
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    border-radius: 40px;
    padding: 8px 20px; /* Common padding */
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s;
}

/* Button 1: Quản lý gói cước */
.btn-primary {
    height: 48px;
    background: #FF0000;
    color: #FFFFFF;
}
.btn-primary:hover {
    background: #D60000;
}

/* Button 2: Sao chép tất cả */
.btn-secondary {
    height: 48px;
    background: #FFFFFF; /* White background */
    color: #000000;
    border: 1px solid #CCCCCC;
}
.btn-secondary:hover {
    background: #f3f4f6; /* Light gray on hover */
}

/* Button 3: Quay về trang chủ */
.btn-text {
    height: 46px; /* Custom height from design */
    background: transparent;
    color: #000000;
}
.btn-text:hover {
    background: #f0f0f0;
}

/* Basic style for all buttons */
.payment-status-button {
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    border-radius: 40px;
    padding: 14px 24px;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

/* Style for main button (Red) */
.payment-status-button-primary {
    background-color: #DC2626;
    color: #FFFFFF;
}

.payment-status-button-primary:hover {
    background-color: #B91C1C;
}

/* Style for text button (transparent) */
.payment-status-button-text {
    background-color: transparent;
    color: #000000;
    border: none;
    box-shadow: none;
    padding: 12px 24px; /* Slightly reduced padding for text button */
}

.payment-status-button-text:hover {
    background-color: #f3f4f6;
}

/* Ẩn các khối giá cước có class này theo mặc định */
.price-block-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Khi container có class 'expanded', hiển thị các khối giá cước bị ẩn */
#pricingBlocksContainer.expanded .price-block-hidden {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* CSS cho nút và icon "Xem thêm" */
#showMorePricingBtn {
    white-space: nowrap;
    font-weight: 500;
}

/* Ẩn nút "Xem thêm" nếu không cần thiết */
#showMoreContainer.hidden {
    display: none;
}

#phoneNumber:focus {
  outline: none !important;
  box-shadow: none !important;
}

#email:focus {
  outline: none !important;
  box-shadow: none !important;
}

#renewalAccountInput:focus {
  outline: none !important;
  box-shadow: none !important;
}

#buyerName:focus,
#companyName:focus,
#taxCode:focus,
#invoiceAddress:focus,
#invoicePhoneNumber:focus,
#invoiceEmail:focus {
  outline: none !important;
  box-shadow: none !important;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.-top-2 {
  top: -0.5rem;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.left-3 {
  left: 0.75rem;
}

.left-4 {
  left: 1rem;
}

.right-5 {
  right: 1.25rem;
}

.top-4 {
  top: 1rem;
}

.top-5 {
  top: 1.25rem;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-ml-px {
  margin-left: -1px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-1\.5 {
  margin-right: 0.375rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-2 {
  height: 0.5rem;
}

.h-28 {
  height: 7rem;
}

.h-3 {
  height: 0.75rem;
}

.h-32 {
  height: 8rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-56 {
  height: 14rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-80 {
  height: 20rem;
}

.h-\[150px\] {
  height: 150px;
}

.h-\[79px\] {
  height: 79px;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-full {
  max-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.w-1\/2 {
  width: 50%;
}

.w-16 {
  width: 4rem;
}

.w-2 {
  width: 0.5rem;
}

.w-28 {
  width: 7rem;
}

.w-3 {
  width: 0.75rem;
}

.w-32 {
  width: 8rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-\[79px\] {
  width: 79px;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.min-w-full {
  min-width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-\[150px\] {
  max-width: 150px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-none {
  max-width: none;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-xs {
  max-width: 20rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-inside {
  list-style-position: inside;
}

.list-disc {
  list-style-type: disc;
}

.list-none {
  list-style-type: none;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-x-2\.5 {
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-0 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}

.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-\[10px\] {
  border-radius: 10px;
}

.rounded-\[40px\] {
  border-radius: 40px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-l-\[5px\] {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-r-\[5px\] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-l {
  border-left-width: 1px;
}

.border-l-0 {
  border-left-width: 0px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-t {
  border-top-width: 1px;
}

.border-none {
  border-style: none;
}

.border-\[\#E3E5E6\] {
  --tw-border-opacity: 1;
  border-color: rgb(227 229 230 / var(--tw-border-opacity, 1));
}

.border-\[rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  border-color: rgba(0,0,0,0.25);
}

.border-\[rgba\(0\2c 0\2c 0\2c 0\.5\)\] {
  border-color: rgba(0,0,0,0.5);
}

.border-\[rgba\(181\2c 181\2c 181\2c 0\.34\)\] {
  border-color: rgba(181,181,181,0.34);
}

.border-\[rgba\(181\2c 181\2c 181\2c 0\.5\)\] {
  border-color: rgba(181,181,181,0.5);
}

.border-\[rgba\(181\2c 181\2c 181\2c 1\)\] {
  border-color: rgba(181,181,181,1);
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}

.border-white\/70 {
  border-color: rgb(255 255 255 / 0.7);
}

.border-l-\[rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  border-left-color: rgba(0,0,0,0.3);
}

.border-t-\[rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  border-top-color: rgba(0,0,0,0.3);
}

.bg-\[\#5CB85C\] {
  --tw-bg-opacity: 1;
  background-color: rgb(92 184 92 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FF0000\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 0 / var(--tw-bg-opacity, 1));
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.bg-blue-600\/20 {
  background-color: rgb(37 99 235 / 0.2);
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}

.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-1 {
  padding: 0.25rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.align-middle {
  vertical-align: middle;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11\.2px\] {
  font-size: 11.2px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[25px\] {
  font-size: 25px;
}

.text-\[35px\] {
  font-size: 35px;
}

.text-\[8\.4px\] {
  font-size: 8.4px;
}

.text-\[9\.6px\] {
  font-size: 9.6px;
}

.text-\[9px\] {
  font-size: 9px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.leading-5 {
  line-height: 1.25rem;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-\[15px\] {
  line-height: 15px;
}

.leading-\[19px\] {
  line-height: 19px;
}

.leading-\[23px\] {
  line-height: 23px;
}

.leading-\[26px\] {
  line-height: 26px;
}

.leading-\[27px\] {
  line-height: 27px;
}

.leading-\[30px\] {
  line-height: 30px;
}

.leading-\[34px\] {
  line-height: 34px;
}

.leading-\[43px\] {
  line-height: 43px;
}

.leading-none {
  line-height: 1;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-\[-0\.5px\] {
  letter-spacing: -0.5px;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.text-\[\#172462\] {
  --tw-text-opacity: 1;
  color: rgb(23 36 98 / var(--tw-text-opacity, 1));
}

.text-\[\#222222\] {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity, 1));
}

.text-\[\#333333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.text-\[\#4F31F3\] {
  --tw-text-opacity: 1;
  color: rgb(79 49 243 / var(--tw-text-opacity, 1));
}

.text-\[\#666666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}

.text-\[\#999999\] {
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.text-\[\#EF6B14\] {
  --tw-text-opacity: 1;
  color: rgb(239 107 20 / var(--tw-text-opacity, 1));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.line-through {
  text-decoration-line: line-through;
}

.opacity-0 {
  opacity: 0;
}

.shadow-\[0px_0px_4px_rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  --tw-shadow: 0px 0px 4px rgba(0,0,0,0.25);
  --tw-shadow-colored: 0px 0px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0px_0px_4px_rgba\(0\2c 0\2c 0\2c 0\.5\)\] {
  --tw-shadow: 0px 0px 4px rgba(0,0,0,0.5);
  --tw-shadow-colored: 0px 0px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:border-blue-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

@media (min-width: 640px) {
  .sm\:mb-12 {
    margin-bottom: 3rem;
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:mr-3 {
    margin-right: 0.75rem;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:mt-3 {
    margin-top: 0.75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mt-8 {
    margin-top: 2rem;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-2\.5 {
    height: 0.625rem;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-2\.5 {
    width: 0.625rem;
  }

  .sm\:w-4 {
    width: 1rem;
  }

  .sm\:max-w-\[180px\] {
    max-width: 180px;
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-\[10px\] {
    font-size: 10px;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media (min-width: 768px) {
  .md\:h-14 {
    height: 3.5rem;
  }

  .md\:h-5 {
    height: 1.25rem;
  }

  .md\:w-5 {
    width: 1.25rem;
  }

  .md\:max-w-\[200px\] {
    max-width: 200px;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}