.menu-bar.v8 {
    height: 60px;
    transition: all 0.3s ease;
}

.menu-bar.v8.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-bar.v8.sticky-header .menu-content {
    height: 60px;
}

.menu-bar.v8.sticky-header .top-level-nav {
    height: 60px;
}

.menu-bar.v8.sticky-header .top-level-nav ul {
    height: 60px;
}

.menu-bar.v8.sticky-header .top-level-nav ul li {
    height: 56px;
}

.menu-bar.v8.sticky-header .menu-right {
    height: 60px;
    display: flex;
    align-items: center;
}

.menu-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
}

.menu-logo {
    margin-right: 0;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
    height: 60px;
    display: flex;
    align-items: center;
}
.menu-logo a img{
    padding: 10px;
}
.top-level-nav {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 0.2s;
    height: 60px;
    display: flex;
    align-items: center;
}

.top-level-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 60px;
}

.top-level-nav ul li {
    height: 56px; /* 60px - 4px border */
    display: flex;
    align-items: center;
    margin-bottom: 4px; /* Account for border */
}

.top-level-nav ul li.active {
    border-bottom: 4px solid rgb(0,176,17);
    margin-bottom: 0;
}

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

.menu-right .right-menur-btns li a {
    padding: 4px 20px;
}

.business-homepage .top-level-nav ul li a, .business-page .top-level-nav ul li a{
    color: #013830 !important;
}

.top-level-nav ul li a{
    color: #fff !important;
}
.top-level-nav ul li.active a{
    color: rgb(0,176,17) !important;
}

.sub-level-nav {
    height: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sub-level-nav .menu-content {
    height: 60px;
}

.sub-level-nav ul {
    height: 60px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.sub-level-nav ul li {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.sub-level-nav ul li.has-dropdown {
    position: relative;
}

.sub-level-nav ul li.has-dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    height: auto;
    z-index: 999;
}

.sub-level-nav ul li.has-dropdown:hover ul {
    display: flex;
}

.sub-level-nav ul li.has-dropdown ul li {
    height: auto;
    padding: 2px 0px;
    width: 100%;
}

.sub-level-nav ul li.has-dropdown ul li a {
    color: #013830 !important;
    display: block;
    width: 100%;
}

.sub-level-nav ul li.has-dropdown ul li:hover {
    background: rgba(0, 176, 17, 0.1);
}

.sub-level-nav ul li a {
    color: #013830 !important;
}

.bg-green{
    background-color: #013830 !important;
}

.green-text{
    color: #013830 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typewriter {
    display: inline-block;
    position: relative;
    color: #fff;
    text-shadow: 0 0 10px rgb(0,176,17),
                 0 0 20px rgb(0,176,17),
                 0 0 30px rgb(0,176,17);
    min-width: 120px; /* Adjust based on longest word */
    text-align: left;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Make radio buttons and checkboxes round */
.form-check-input[type="radio"] {
    border-radius: 50%;
    width: 1em;
    height: 1em;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25rem;
}

/* Improve the appearance of radio buttons and checkboxes */
.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.form-check-input:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Specific styles for create-account-page */
body.create-account-page .form-check-input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-top: 0.3em;
    border-radius: 50%;
    padding: 0;
    border-width: 1px;
}

body.create-account-page .form-check {
    padding-left: 0;
    margin-bottom: 0;
}

body.create-account-page .form-check-label {
    padding-left: 2em;
    margin-bottom: 0;
    line-height: 30px;
}

body.create-account-page .d-flex.gap-4 {
    gap: 2rem !important;
}

#productSubcategory {
    display: block !important;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#productSubcategory:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

/* Radio button right alignment styles */
.form-check {
    position: relative;
    padding: 0.5rem 0;
}

.form-check-input {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form-check-label {
    padding-right: 2rem;
}

/* Adjust spacing for radio button groups */
.d-flex.gap-4 {
    gap: 0.5rem !important;
}

/* Modern Radio Button Styles */
.modern-radio {
    position: relative;
    padding: 0;
    margin: 0;
    min-width: 120px;
}

.modern-radio .form-check-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.modern-radio .form-check-label {
    display: block;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    margin: 0;
}

.modern-radio .form-check-input:checked + .form-check-label {
    background: #198754;
    border-color: #198754;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
    transform: translateY(-1px);
}

.modern-radio .form-check-input:hover + .form-check-label {
    border-color: #198754;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.1);
}

.modern-radio .form-check-input:focus + .form-check-label {
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.25);
}

/* Adjust spacing for radio button groups */
.d-flex.gap-4 {
    gap: 1rem !important;
}

.ml-0{
    margin-left: 0px !important;
}

.pt-40{
    padding-top: 40px;
}

/* White Paper Widget Styles */
.whitepaper-widget {
    background: linear-gradient(135deg, #013830 0%, #025a4a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #025a4a;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whitepaper-header {
    text-align: center;
    margin-bottom: 30px;
}

.whitepaper-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.whitepaper-icon i {
    font-size: 24px;
    color: #013830;
}

.whitepaper-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.whitepaper-subtitle {
    font-size: 14px;
    color: #e9ecef;
    line-height: 1.5;
    margin: 0;
}

.whitepaper-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    color: #013830;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group input[type="email"]::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #e9ecef;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00b011;
    border-color: #00b011;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.whitepaper-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00b011 0%, #009a0f 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 176, 17, 0.3);
    position: relative;
    overflow: hidden;
}

.whitepaper-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.whitepaper-submit-btn:hover::before {
    left: 100%;
}

.whitepaper-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 176, 17, 0.4);
}

.whitepaper-submit-btn:active {
    transform: translateY(-1px);
}

.whitepaper-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

/* Loading State with Modern Animation */
.loading-state {
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-spinner {
    margin-bottom: 24px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.loading-text {
    color: #e9ecef;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Success State with Modern Animations */
.success-state {
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    animation: successFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes successFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ebook-mockup {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: fadeInGrow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInGrow {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

.success-row {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-row:last-child {
    margin-bottom: 0;
}

.success-message {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: messageSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-message p {
    color: #e9ecef;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.ebook-cover {
    width: 90px;
    height: 110px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #013830;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4), 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.ebook-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #013830, #025a4a);
}

.ebook-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.ebook-subtitle {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 500;
}

.download-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00b011 0%, #009a0f 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    animation: downloadBtnAppear 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
    box-shadow: 0 8px 32px rgba(0, 176, 17, 0.3);
    position: relative;
    overflow: hidden;
}

@keyframes downloadBtnAppear {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 176, 17, 0.4);
}

.download-btn:active {
    transform: translateY(-1px);
}

.download-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whitepaper-widget {
        padding: 20px;
    }
    .whitepaper-title {
        font-size: 24px;
    }
    .success-message {
        padding: 15px;
    }
}

/* Call Center Styles */
.lookup-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lookup-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}
.results-section {
    display: none;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.results-section.show {
    opacity: 1;
    transform: translateY(0);
}
.results-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.results-section.show .results-table {
    opacity: 1;
    transform: scale(1);
}
.results-table th {
    background: #f8f9fa;
    padding: 15px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}
.results-table td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}
.results-table tr:last-child td {
    border-bottom: none;
}
#lookup-form .form-control {
    height: 50px;
}
#lookup-form .btn {
    height: 50px;
}

/* Modern Loading Animation */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 200px;
}

.loading-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.loading-spinner::before,
.loading-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #013830, #00b011);
    animation: spin 1.5s linear infinite, pulse 2s ease-in-out infinite;
}

.loading-spinner::after {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: linear-gradient(45deg, #00b011, #013830);
    animation: spin 1.5s linear infinite reverse, pulse 2s ease-in-out infinite 0.5s;
}

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

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.loading-text {
    font-size: 18px;
    font-weight: 500;
    color: #013830;
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #013830;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth table row animations */
.results-table tbody tr {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRow 0.6s ease-out forwards;
}

.results-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.results-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.results-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.results-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.results-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
.results-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
.results-table tbody tr:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInRow {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form button loading state */
#lookup-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

#lookup-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

@keyframes buttonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade out animation for hiding elements */
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* User Information Card Styles */
.user-info-card {
    background: linear-gradient(135deg, #013830 0%, #00b011 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 176, 17, 0.15);
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.user-info-card.show {
    opacity: 1;
    transform: translateY(0);
}
.user-info-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #013830;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}
.user-details{
    margin:0 auto;
}
.user-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.user-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0,255,136,0.5);
    animation: pulse 2s ease-in-out infinite;
}
.status-indicator.status-active {
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0,255,136,0.5);
}
.status-indicator.status-inactive {
    background: #ff4444;
    box-shadow: 0 0 8px rgba(255,68,68,0.5);
}
.user-info-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}
.metric-item {
    height: 100%;
    text-align: left;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}
.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bfae, #7b1fa2);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.metric-item:hover {
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.metric-item:hover::before {
    opacity: 1;
}
.metric-value {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
    line-height: 1.2;
    border: none;
    background: none;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.metric-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.metric-label i {
    font-size: 1rem;
    color: #00bfae;
    opacity: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.recent-pages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.page-item {
    font-size: 0.85rem;
    color: #ffffff;
    padding: 10px 14px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    border-left: 3px solid #00bfae;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.page-item:hover {
    background: rgba(0,0,0,0.3);
    transform: translateX(3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border-left-color: #7b1fa2;
}
@media (max-width: 768px) {
    .user-info-card {
        padding: 20px;
    }
    .user-info-left {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    .user-info-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .user-avatar {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .user-details h4 {
        font-size: 1.5rem;
    }
}

/* Call Completion Buttons Row */
.call-completion-row {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-completion-row.show {
    opacity: 1;
    transform: translateY(0);
}

.call-completion-row .row {
    align-items: center;
}

.call-btn {
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
}

.call-btn-no-conversion {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}

.call-btn-no-conversion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 53, 69, 0.4);
}

.call-btn-conversion {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);

}

.call-btn-conversion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(40, 167, 69, 0.4);
}

.call-btn:active {
    transform: translateY(0);
}

.call-btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments for call buttons */
@media (max-width: 768px) {
    .call-completion-row {
        padding: 20px;
    }
    
    .call-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .call-completion-row .row {
        gap: 10px;
    }
}

/* Credit Card Comparison Styles */
.card-comparison .card {
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(123,31,162,0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.card-comparison .card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0,191,174,0.18);
    z-index: 2;
}

.card-comparison .card-body .icon-emoji {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.card-comparison .card .link-anime {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-comparison .card:hover .link-anime {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 16px #7b1fa2a0;
}

.compare-cta-btn {
    background: linear-gradient(90deg, #00bfae 0%, #7b1fa2 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 16px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    box-shadow: 0 2px 12px #7b1fa233;
    border: none;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1);
    cursor: pointer;
    margin-top: 1.5rem;
}

.compare-cta-btn:hover {
    animation: bounce 0.5s;
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 8px 32px #00bfae33;
}

/* Modal styles */
.modal-compare-bg {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100vw; 
    height: 100vh;
    background: rgba(0,0,0,0.35); 
    align-items: center; 
    justify-content: center;
}

.modal-compare-bg.active { 
    display: flex; 
}

.modal-compare {
    background: #fff; 
    border-radius: 24px; 
    max-width: 700px; 
    width: 95vw; 
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(123,31,162,0.18);
    position: relative;
    animation: modalIn 0.3s cubic-bezier(.4,2,.6,1);
}

@keyframes modalIn {
    from { 
        transform: scale(0.92) translateY(40px); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

.modal-compare-close {
    position: absolute; 
    top: 18px; 
    right: 22px; 
    font-size: 2rem; 
    color: #7b1fa2; 
    background: none; 
    border: none; 
    cursor: pointer; 
    font-weight: 700; 
    line-height: 1;
}

.modal-compare-table th, 
.modal-compare-table td {
    padding: 0.7em 1em; 
    text-align: center; 
    border-bottom: 1px solid #e0e0e0;
}

.modal-compare-table th {
    background: #f3e5f5; 
    color: #7b1fa2; 
    font-weight: 700;
}

.modal-compare-table tr:last-child td { 
    border-bottom: none; 
}

/* Modern Compare Table Styles */
.modern-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px 0 rgba(0,191,174,0.10);
    margin-bottom: 0;
}

.modern-compare-table th, 
.modern-compare-table td {
    padding: 1.1em 1.2em;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.08em;
}

.modern-compare-table th {
    background: #e0f7fa;
    color: #00bfae;
    font-weight: 800;
    font-size: 1.15em;
}

.modern-compare-table tr:last-child td {
    border-bottom: none;
}

.modern-compare-table .check {
    color: #00bfae;
    font-size: 1.5em;
    font-weight: bold;
}

.modern-compare-table .cross {
    color: #e53935;
    font-size: 1.5em;
    font-weight: bold;
}

/* Credit Card SVG Wobble Animation */
.card-offer-click {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.card-offer-click:hover {
    transform: scale(1.02);
}

.card-offer-click.wobble {
    animation: cardWobble 0.6s ease-in-out;
}

@keyframes cardWobble {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-1deg); }
    75% { transform: translateX(5px) rotate(1deg); }
}

/* Progress Tracker Styles */
.progress-tracker-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 30px;
}

.progress-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.progress-step.active .step-circle {
    border-color: #013830;
    background: #013830;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(1, 56, 48, 0.3);
}

.progress-step.completed .step-circle {
    border-color: #00b011;
    background: #00b011;
    transform: scale(1.05);
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    color: #fff;
}

.progress-step.completed .step-number {
    color: #fff;
}

.step-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
        font-size: 20px;
    }

.step-label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
        text-align: center;
    transition: all 0.3s ease;
    max-width: 100px;
}

.progress-step.active .step-label {
    color: #013830;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #00b011;
    font-weight: 600;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 3px;
    /* background: #dee2e6; */
    z-index: -1;
    transition: all 0.3s ease;
}

.progress-step:last-child .step-line {
    display: none;
}

.progress-step.completed .step-line {
    background: #00b011;
}

/* Progress line animation */
.progress-tracker::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: #dee2e6;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-tracker.progress-1::before {
    background: linear-gradient(to right, #00b011 0%, #00b011 33%, #dee2e6 33%, #dee2e6 100%);
}

.progress-tracker.progress-2::before {
    background: linear-gradient(to right, #00b011 0%, #00b011 66%, #dee2e6 66%, #dee2e6 100%);
}

.progress-tracker.progress-3::before {
    background: #00b011;
}

/* Responsive design */
@media (max-width: 768px) {
    .progress-tracker-container {
        padding: 30px 0;
    }
    
    .progress-tracker {
        padding: 0 20px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 16px;
    }
    
    .step-label {
        font-size: 12px;
        max-width: 80px;
    }
    
    .step-line {
        top: 25px;
    }
    
    .progress-tracker::before {
        top: 25px;
        left: 25px;
        right: 25px;
    }
}

@media (max-width: 480px) {
    .progress-tracker {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    
    .step-line {
        display: none;
    }
    
    .progress-tracker::before {
        display: none;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
    }
    
    .step-label {
        margin-top: 8px;
        font-size: 11px;
    }
}

.custom-lazy-img {
    display: block;
    width: 100%;
    height: auto;
    background: #f3f3f3;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.custom-lazy-img.loaded {
    opacity: 1;
    background: none;
}

/* Specific heights for known images on index.html for above-the-fold stability */
.banner.v8 img.custom-lazy-img {
    min-height: 320px;
}
.cash-out-img img.custom-lazy-img {
    min-height: 200px;
    max-width: 100%;
}
.grow-with-peace-img img.custom-lazy-img,
.stay-control-img img.custom-lazy-img {
    min-height: 200px;
    max-width: 100%;
}
.bg-slide img.custom-lazy-img,
.bg-slider img.custom-lazy-img {
    min-height: 80px;
    max-width: 100%;
}
.partners-logo .swiper-slide img.custom-lazy-img {
    min-height: 60px;
    max-width: 100%;
}
.payment-under-left img.custom-lazy-img,
.pay img.custom-lazy-img {
    min-height: 150px;
    max-width: 100%;
}
.calculateGrowth img.custom-lazy-img {
    min-height: 100px;
    max-width: 100%;
}
.mask-img-2 img.custom-lazy-img {
    min-height: 120px;
    max-width: 100%;
}
.slide-1 img.custom-lazy-img,
.slide-2 img.custom-lazy-img,
.slide-3 img.custom-lazy-img {
    min-height: 100px;
    max-width: 100%;
}

/* Ensure images maintain their natural aspect ratio */
.custom-lazy-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.admin-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.admin-section .section-title {
    color: #013830;
    font-weight: 600;
    border-bottom: 2px solid #00b011;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Admin Buttons */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.admin-btn:active {
    transform: translateY(0);
}

.admin-btn-primary {
    background: linear-gradient(135deg, #013830 0%, #00b011 100%);
    color: #fff;
}

.admin-btn-primary:hover {
    background: linear-gradient(135deg, #00b011 0%, #013830 100%);
    color: #fff;
}

.admin-btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
}

.admin-btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    color: #fff;
}

/* Lookup Section */
.lookup-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.lookup-section h4 {
    color: #013830;
    font-weight: 600;
    margin-bottom: 20px;
}

.lookup-section .form-group {
    margin-bottom: 15px;
}

.lookup-section .form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lookup-section .form-control:focus {
    border-color: #00b011;
    box-shadow: 0 0 0 0.2rem rgba(0, 176, 17, 0.25);
}

.lookup-section .btn {
    background: linear-gradient(135deg, #013830 0%, #00b011 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.lookup-section .btn:hover {
    background: linear-gradient(135deg, #00b011 0%, #013830 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Results Section */
.results-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.results-section.show {
    opacity: 1;
    transform: translateY(0);
}

.results-section h4 {
    color: #013830;
    font-weight: 600;
    margin-bottom: 20px;
}

.results-output {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    animation: subtleBackgroundShift 8s ease-in-out infinite;
}

.results-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtleBackgroundShift {
    0%, 100% {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    }
    50% {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Moments Events Section */
.moments-events-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.moments-events-section h4 {
    color: #013830;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Event Type Selection */
.event-type-selection .btn-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-type-selection .btn {
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
}

.event-type-selection .btn:first-child {
    border-radius: 8px 0 0 8px;
}

.event-type-selection .btn:last-child {
    border-radius: 0 8px 8px 0;
}

.event-type-selection .btn-outline-primary {
    color: #013830;
    background: #fff;
    border: 2px solid #013830;
}

.event-type-selection .btn-outline-primary:hover,
.event-type-selection .btn-outline-primary:focus {
    background: #013830;
    color: #fff;
    border-color: #013830;
}

.event-type-selection .btn-check:checked + .btn-outline-primary {
    background: #013830;
    color: #fff;
    border-color: #013830;
}

/* Event Fields */
.event-fields .form-group {
    margin-bottom: 20px;
}

.event-fields label {
    font-weight: 600;
    color: #013830;
    margin-bottom: 8px;
    display: block;
}

.event-fields .form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.event-fields .form-control:focus {
    border-color: #00b011;
    box-shadow: 0 0 0 0.2rem rgba(0, 176, 17, 0.25);
}

.event-fields .form-control:disabled {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00b011;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loading-text {
    font-size: 16px;
    color: #013830;
    font-weight: 600;
    margin-bottom: 10px;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: #00b011;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .admin-btn {
        min-width: 150px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .lookup-section,
    .moments-events-section {
        padding: 20px;
    }
    
    .event-type-selection .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .results-output {
        font-size: 11px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .admin-section {
        padding: 15px;
    }
    
    .admin-btn {
        min-width: 120px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .lookup-section,
    .moments-events-section {
        padding: 15px;
    }
    
    .event-fields .row {
        flex-direction: column;
    }
    
    .event-fields .col-md-6 {
        width: 100%;
    }
}

/* Email Lookup Section */
.email-lookup-section {
    margin-bottom: 20px;
}

.email-lookup-section label {
    font-weight: 600;
    color: #013830;
    margin-bottom: 8px;
    display: block;
}

.email-lookup-section .input-group {
    display: flex;
    gap: 0;
}

.email-lookup-section .form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.email-lookup-section .form-control:focus {
    border-color: #00b011;
    box-shadow: 0 0 0 0.2rem rgba(0, 176, 17, 0.25);
    z-index: 2;
}

.email-lookup-section .btn {
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #013830 0%, #00b011 100%);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-lookup-section .btn:hover {
    background: linear-gradient(135deg, #00b011 0%, #013830 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.email-lookup-section .btn.loading {
    pointer-events: none;
}

.email-lookup-section .btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

/* Event Fields Input Group */
.event-fields .input-group {
    display: flex;
    gap: 0;
}

.event-fields .input-group .form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    border-right: none;
}

.event-fields .input-group .form-control:focus {
    border-color: #00b011;
    box-shadow: 0 0 0 0.2rem rgba(0, 176, 17, 0.25);
    z-index: 2;
}

.event-fields .input-group .btn {
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #013830 0%, #00b011 100%);
    transition: all 0.3s ease;
    white-space: nowrap;
    border-left: none;
}

.event-fields .input-group .btn:hover {
    background: linear-gradient(135deg, #00b011 0%, #013830 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-fields .input-group .btn.loading {
    pointer-events: none;
}

.event-fields .input-group .btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

@keyframes buttonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}