/* Smooth Transitions */
* {
  scroll-behavior: smooth;
}

/* Enhanced Sidebar Transitions */
.sidebar {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar .menu-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}

.sidebar .menu-item:hover {
  transform: translateX(4px);
}

.sidebar .menu-item-text {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Page Transitions */
.page-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Button Transitions */
button, .btn, [role="button"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover, .btn:hover, [role="button"]:hover {
  transform: translateY(-1px);
}

/* Smooth Focus Transitions */
input, textarea, select {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Login Form Custom Styles */
.login-container-lg {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-form-wrapper-lg {
    max-width: 30rem;
    width: 100%;
    background: transparent;
}

.login-title-lg {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: left;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .login-container-lg {
        padding: 1rem;
        align-items: center;
    }
    
    .login-form-wrapper-lg {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .login-title-lg {
        font-size: 2rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .login-container-lg {
        padding: 0.5rem;
    }
    
    .login-form-wrapper-lg {
        padding: 1.5rem;
    }
    
    .login-title-lg {
        font-size: 1.75rem;
    }
}

.login-form-lg {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-field-group-lg {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-label-lg {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
}

.login-input-lg {
    width: 100%;
    height: 3rem;
    padding: 0.75rem 1rem;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #000000;
    transition: all 0.2s ease;
}

.login-input-lg::placeholder {
    color: #9ca3af;
}

.login-input-lg:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.login-forgot-link-lg {
    color: #9333ea;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    align-self: flex-start;
    margin-top: -0.5rem;
}

.login-forgot-link-lg:hover {
    text-decoration: underline;
}

.login-button-lg {
    width: 100%;
    height: 3rem;
    background-color: #9333ea;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-button-lg {
    width: 100%;
    height: 3rem;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #9333ea;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.google-button-lg:hover {
    background-color: #f9fafb;
}

.google-icon-lg {
    width: 1.25rem;
    height: 1.25rem;
}

.login-signup-text-lg {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.login-signup-link-lg {
    color: #9333ea;
    font-weight: 500;
    text-decoration: none;
}

.login-signup-link-lg:hover {
    color: #7c3aed;
    text-decoration: underline;
}

/* Global Radio Button and Checkbox Color Override */
input[type="radio"] {
    accent-color: #9333ea !important;
}

input[type="checkbox"] {
    accent-color: #9333ea !important;
}

/* Force checkbox and radio button colors */
input[type="checkbox"]:checked {
    background-color: #9333ea !important;
    border-color: #9333ea !important;
}

input[type="radio"]:checked {
    background-color: #9333ea !important;
    border-color: #9333ea !important;
}

/* Override any blue colors */
input[type="checkbox"][style*="blue"],
input[type="radio"][style*="blue"] {
    accent-color: #9333ea !important;
    background-color: #9333ea !important;
    border-color: #9333ea !important;
}

/* Remove any blue borders from containers */
.schedule-newsletter-program-card-schedule-nl {
    border: 2px solid #e5e7eb !important;
}

.schedule-newsletter-program-card-schedule-nl:hover,
.schedule-newsletter-program-card-schedule-nl:focus,
.schedule-newsletter-program-card-schedule-nl.schedule-newsletter-program-card-selected-schedule-nl {
    border: 2px solid #e5e7eb !important;
}

/* Force remove any blue accent colors from inline styles */
input[type="checkbox"][style*="accent-color"] {
    accent-color: #9333ea !important;
}

input[type="radio"][style*="accent-color"] {
    accent-color: #9333ea !important;
}

/* Connected Card Page Styles */
.connected-card-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.connected-card-top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.customize-card-con-card,
.order-card-con-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon-con-card {
    width: 80px;
    height: 80px;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon-con-card i {
    font-size: 2rem;
    color: #9333ea;
}

.card-title-con-card {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.card-description-con-card {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 450px;
}

.card-btn-con-card {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    max-width: 250px;
}

.card-btn-con-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.card-btn-con-card i {
    font-size: 1.1rem;
}

.connected-card-bottom-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.card-image-con-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-con-card img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-benefits-con-card {
    padding: 1rem 0;
}

.benefits-title-con-card {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
}

.benefits-list-con-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item-con-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check-con-card {
    color: #9333ea;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-content-con-card {
    flex: 1;
}

.benefit-title-con-card {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.benefit-description-con-card {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .connected-card-container {
        padding: 1rem;
    }
    
    .connected-card-top-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .connected-card-bottom-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .customize-card-con-card,
    .order-card-con-card {
        padding: 2rem;
    }
    
    .card-title-con-card {
        font-size: 1.25rem;
    }
    
    .benefits-title-con-card {
        font-size: 1.25rem;
    }
}

/* Coaching Course Page Styles */
.coaching-container {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Video Call Section */
.coaching-video-call-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coaching-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.coaching-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.coaching-expert-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.coaching-expert-profile {
    text-align: center;
}

.coaching-expert-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    background-color: #f3f4f6;
}

.coaching-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coaching-expert-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.coaching-expert-title {
    font-size: 0.9rem;
    color: #9333ea;
    margin: 0 0 0.75rem 0;
    font-weight: 500;
}

.coaching-expert-rating {
    margin-bottom: 1rem;
}

.coaching-rating-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.coaching-rating-score {
    font-weight: 600;
    color: #1f2937;
    margin-right: 0.25rem;
}

.coaching-rating-reviews {
    color: #6b7280;
    font-size: 0.9rem;
}

.coaching-expert-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.coaching-expert-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.coaching-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.coaching-detail-item i {
    font-size: 0.8rem;
}

.coaching-time-slots {
    background: white;
}

.coaching-slots-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.coaching-date-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.coaching-date-tab {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coaching-date-tab.coaching-active {
    background: #9333ea;
    color: white;
    border-color: #9333ea;
}

.coaching-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.coaching-time-slot {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coaching-time-slot.coaching-time-active {
    background: #9333ea;
    color: white;
    border-color: #9333ea;
}

.coaching-book-btn {
    width: 100%;
    padding: 1rem;
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Training Section */
.coaching-training-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coaching-search-container {
    position: relative;
    width: 300px;
}

.coaching-search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.coaching-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.9rem;
}

.coaching-topic-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.coaching-topic-filter {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coaching-topic-filter.coaching-topic-active {
    background: #9333ea;
    color: white;
    border-color: #9333ea;
}

.coaching-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.coaching-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.coaching-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.coaching-video-thumbnail {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coaching-video-purple { background-color: #9333ea; }
.coaching-video-blue { background-color: #3b82f6; }
.coaching-video-green { background-color: #10b981; }
.coaching-video-orange { background-color: #f59e0b; }
.coaching-video-pink { background-color: #ec4899; }
.coaching-video-dark-blue { background-color: #1e40af; }

.coaching-play-icon {
    color: white;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.coaching-play-icon::before {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 3px;
}

.coaching-video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.coaching-video-content {
    padding: 1.25rem;
}

.coaching-video-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.coaching-video-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.coaching-video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coaching-video-tag {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1f2937;
}

.coaching-tag-purple { background: #f3e8ff; }
.coaching-tag-blue { background: #dbeafe; }
.coaching-tag-green { background: #d1fae5; }
.coaching-tag-orange { background: #fed7aa; }
.coaching-tag-pink { background: #fce7f3; }
.coaching-tag-dark-blue { background: #dbeafe; }

.coaching-video-views {
    font-size: 0.75rem;
    color: #6b7280;
}

.coaching-load-more-btn {
    display: block;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    border: 2px solid #9333ea;
    background: white;
    color: #9333ea;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coaching-load-more-btn:hover {
    background: #9333ea;
    color: white;
}

/* Software Section */
.coaching-software-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coaching-section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0.5rem 0 0 0;
    font-weight: 400;
}

.coaching-software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.coaching-software-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.coaching-software-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.coaching-software-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
    overflow: hidden;
    padding: 0.7vh;
}

.coaching-software-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.coaching-icon-purple { background: #9333ea; }
.coaching-icon-blue { background: #3b82f6; }
.coaching-icon-green { background: #10b981; }
.coaching-icon-orange { background: #f59e0b; }
.coaching-icon-pink { background: #ec4899; }
.coaching-icon-dark-blue { background: #1e40af; }

.coaching-software-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.coaching-software-category {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

.coaching-software-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.coaching-software-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.coaching-discount {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.coaching-promo-code {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
}

.coaching-promo-purple { background: #f3e8ff; }
.coaching-promo-blue { background: #dbeafe; }
.coaching-promo-green { background: #d1fae5; }
.coaching-promo-orange { background: #fed7aa; }
.coaching-promo-pink { background: #fce7f3; }
.coaching-promo-dark-blue { background: #dbeafe; }

.coaching-get-discount-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coaching-btn-purple { background: #9333ea; }
.coaching-btn-blue { background: #3b82f6; }
.coaching-btn-green { background: #10b981; }
.coaching-btn-orange { background: #f59e0b; }
.coaching-btn-pink { background: #ec4899; }
.coaching-btn-dark-blue { background: #1e40af; }

.coaching-get-discount-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Help Section */
.coaching-help-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coaching-help-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.coaching-help-description {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 2rem 0;
}

.coaching-chat-btn {
    padding: 1rem 2rem;
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coaching-chat-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coaching-videos-grid,
    .coaching-software-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coaching-expert-booking {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .coaching-videos-grid,
    .coaching-software-grid {
        grid-template-columns: 1fr;
    }
    
    .coaching-section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .coaching-search-container {
        width: 100%;
    }
    
    .coaching-time-grid {
        grid-template-columns: 1fr;
    }
    
    .coaching-topic-filters {
        justify-content: flex-start;
    }
}

/* Lead Confirmation Page Styles */
.lead-confirmation-container {
    background-color: #F8F8F8;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Success Confirmation Card */
.success-confirmation-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 0 auto 3rem auto;
    max-width: 1425px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #E6F7ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: #52C41A;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1rem 0;
}

.success-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
}

/* Metrics Section */
.metrics-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid #E0E0E0;
    padding-top: 2rem;
}

.metric-item {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-value.total-leads {
    color: #9333ea;
}

.metric-value.new-lead {
    color: #52C41A;
}

.metric-value.conversion-rate {
    color: #1890FF;
}

.metric-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background-color: #E0E0E0;
}

/* Lead Summary Card */
.lead-summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1425px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.summary-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.summary-icon {
    color: #9333ea;
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

/* Summary Content - Two Column Layout */
.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Referrer Section */
.referrer-section {
    background: #F5F0FF;
    border-radius: 12px;
    padding: 1.5rem;
}

.lead-section {
    background: #E6F0FD;
    border-radius: 14px;
    padding: 1.7rem 2rem;
    box-shadow: none;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.referrer-section .section-icon {
    color: #8A2BE2;
}

.lead-section .section-icon {
    color: #2563eb;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.referrer-section .section-title {
    color: #8A2BE2;
}

.lead-section .section-title {
    color: #2563eb;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    row-gap: 1.1rem;
    column-gap: 2.5rem;
}

.lead-section .info-grid {
    row-gap: 1.35rem;
}

.info-label {
    color: #6b7280;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
}

.lead-section .info-label {
    color: #64748b;
    font-size: 1.08rem;
}

.info-value {
    color: #22223B;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: right;
}

.lead-section .info-value {
    font-size: 1.22rem;
}

.lead-section .info-value:nth-child(6) {
    font-weight: 600;
}

/* Status Container */
.status-container {
    display: flex;
    justify-content: flex-end;
}

.referrer-section .status-container {
    margin-left: 65%;
}

.lead-section .status-container {
    margin-left: 77%;
}

/* Status Badges */
.status-badge {
    font-size: 1rem;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.25em 1.1em;
    display: inline-block;
    box-shadow: none;
}

.status-badge.network-member {
    background: #D1FADF;
    color: #219653;
}

.status-badge.pending {
    background: #fef9c3;
    color: #b98a1d;
}

/* Notifications Check Icon */
.notifications-check-icon {
    color: #219653;
}

.notifications-title {
    display: inline;
    margin-left: 0.5em;
}

/* Notes Section */
.notes-section {
    margin-bottom: 2rem;
    background: #F9FAFB;
    padding: 1rem 1rem;
}

.notes-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.75rem 0;
}

.notes-content {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Notifications Section */
.notifications-section {
    background: #E6F7ED;
    border-radius: 12px;
    padding: 1.5rem;
}

.notifications-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #219653;
    margin: 0 0 1rem 0;
}

.notifications-list {
    margin-top: 0.5rem !important;
    margin-left: 1.5rem !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color:rgb(31, 148, 82);
}

.notification-item:last-child {
    margin-bottom: 0;
}

.notification-icon {
    color: #52C41A;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* Responsive Design */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .lead-confirmation-container {
        padding: 1.5rem 0;
    }
    
    .success-confirmation-card {
        margin: 0 1rem 2.5rem 1rem;
        padding: 2.5rem 2rem;
    }
    
    .lead-summary-card {
        margin: 0 1rem;
        padding: 2.5rem 2rem;
    }
    
    .summary-content {
        gap: 1.25rem;
    }
    
    .referrer-section,
    .lead-section {
        padding: 1.25rem;
    }
    
    .lead-section {
        padding: 1.5rem 1.75rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .lead-confirmation-container {
        padding: 1rem 0;
    }
    
    .success-confirmation-card {
        margin: 0 1rem 2rem 1rem;
        padding: 2rem 1.5rem;
    }
    
    .lead-summary-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .metrics-section {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .metric-divider {
        width: 60px;
        height: 1px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .summary-header {
        margin-bottom: 1.5rem;
    }
    
    .summary-icon {
        font-size: 1.25rem;
    }
    
    .summary-title {
        font-size: 1.25rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .referrer-section,
    .lead-section {
        padding: 1.25rem;
    }
    
    .lead-section {
        padding: 1.5rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-icon {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        row-gap: 0.75rem;
        column-gap: 0;
    }
    
    .info-label {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 0.25rem;
    }
    
    .info-value {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 0.75rem;
    }
    
    .status-container {
        justify-content: flex-start;
        margin-left: 0 !important;
    }
    
    .status-badge {
        font-size: 0.9rem;
        padding: 0.2em 0.9em;
    }
    
    .notes-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .notes-title {
        font-size: 1rem;
    }
    
    .notes-content {
        font-size: 0.85rem;
    }
    
    .notifications-section {
        padding: 1.25rem;
    }
    
    .notifications-title {
        font-size: 1rem;
    }
    
    .notification-item {
        font-size: 0.85rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .lead-confirmation-container {
        padding: 0.75rem 0;
    }
    
    .success-confirmation-card {
        margin: 0 0.75rem 1.75rem 0.75rem;
        padding: 1.5rem 1rem;
    }
    
    .lead-summary-card {
        margin: 0 0.75rem;
        padding: 1.5rem 1rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .success-title {
        font-size: 1.75rem;
    }
    
    .success-subtitle {
        font-size: 0.95rem;
    }
    
    .metrics-section {
        padding-top: 1.25rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .summary-title {
        font-size: 1.125rem;
    }
    
    .referrer-section,
    .lead-section {
        padding: 1rem;
    }
    
    .lead-section {
        padding: 1.25rem 1rem;
    }
    
    .section-icon {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 0.95rem;
    }
    
    .info-label {
        font-size: 0.9rem;
    }
    
    .info-value {
        font-size: 0.95rem;
    }
    
    .status-badge {
        font-size: 0.85rem;
        padding: 0.15em 0.8em;
    }
    
    .notes-section {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .notes-title {
        font-size: 0.95rem;
    }
    
    .notes-content {
        font-size: 0.8rem;
    }
    
    .notifications-section {
        padding: 1rem;
    }
    
    .notifications-title {
        font-size: 0.95rem;
    }
    
    .notification-item {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .lead-confirmation-container {
        padding: 0.5rem 0;
    }
    
    .success-confirmation-card {
        margin: 0 0.5rem 1.5rem 0.5rem;
        padding: 1.25rem 0.75rem;
    }
    
    .lead-summary-card {
        margin: 0 0.5rem;
        padding: 1.25rem 0.75rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-subtitle {
        font-size: 0.9rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .summary-title {
        font-size: 1rem;
    }
    
    .referrer-section,
    .lead-section {
        padding: 0.875rem;
    }
    
    .lead-section {
        padding: 1rem 0.875rem;
    }
    
    .section-title {
        font-size: 0.9rem;
    }
    
    .info-label {
        font-size: 0.85rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .status-badge {
        font-size: 0.8rem;
        padding: 0.1em 0.7em;
    }
    
    .notes-section {
        padding: 0.75rem;
    }
    
    .notes-title {
        font-size: 0.9rem;
    }
    
    .notes-content {
        font-size: 0.75rem;
    }
    
    .notifications-section {
        padding: 0.875rem;
    }
    
    .notifications-title {
        font-size: 0.9rem;
    }
    
    .notification-item {
        font-size: 0.75rem;
    }
}

/* Referral Form Styles */
.referral-form-container {
    background: #f8fafc;
    min-height: 100vh;
    padding: 2rem 0;
}

.referral-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1rem;
}

.referral-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f3f4f6;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
}

.referrer-icon {
    background: #F5F0FF;
    color: #9333ea;
}

.lead-icon {
    background: #EEF2FF;
    color: #6366F1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.card-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.card-content {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1f2937;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: #A0A0A0;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.communication-preferences {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.preferences-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preferences-title i {
    color: #9333ea;
}

.preference-item {
    margin-bottom: 0.75rem;
}

.preference-checkbox {
    display: none;
}

.preference-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem 0;
}

.preference-label::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #9333ea;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.preference-checkbox:checked + .preference-label::before {
    background: #9333ea;
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.preference-label i {
    color: #9333ea;
    width: 16px;
    text-align: center;
}

.referral-form-footer {
    max-width: 1425px;
    margin: 2rem auto 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn-cancel,
.btn-save-draft,
.btn-add-lead {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-cancel {
    background: white;
    color: #374151;
    border: 1px solid #E0E0E0;
}

.btn-cancel:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-save-draft {
    background: #A78BFA;
    color: white;
    margin-left: auto;
}

.btn-save-draft:hover {
    background: #9333ea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.4);
}

.btn-add-lead:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.btn-cancel i {
    color: #4A4A4A;
}

.btn-save-draft i,
.btn-add-lead i {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .referral-form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .referral-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-save-draft {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
}

/* Add Lead Manually Page Styles */
.add-lead-container {
    max-width: 1425px;
    margin: 0 auto;
    background: #f8fafc;
    min-height: 100vh;
}

.add-lead-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.add-lead-title-section {
    flex: 1;
}

.add-lead-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.add-lead-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.btn-back-to-leads {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-back-to-leads:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    color: #1f2937;
    text-decoration: none;
}

.add-lead-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
}

.lead-option-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.lead-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.option-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.option-icon.purple {
    background-color: #9333ea;
}

.option-icon.gray {
    background-color: #e5e7eb;
    color: #374151;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.option-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    max-width: 300px;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    width: 100%;
    max-width: 300px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
    text-align: left;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.purple-check {
    color: #9333ea;
    font-size: 0.875rem;
    font-weight: 600;
}

.gray-check {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-select-option {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.purple-btn {
    background-color: #9333ea;
    color: white;
}

.purple-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.gray-btn {
    background-color: #4b5563;
    color: white;
}

.gray-btn:hover {
    background-color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(75, 85, 99, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .add-lead-container {
        padding: 1rem;
    }
    
    .add-lead-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .add-lead-title {
        font-size: 1.5rem;
    }
    
    .add-lead-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lead-option-card {
        padding: 1.5rem;
    }
    
    .btn-back-to-leads {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .add-lead-container {
        padding: 0.5rem;
    }
    
    .add-lead-header {
        padding: 1.5rem;
    }
    
    .lead-option-card {
        padding: 1.25rem;
    }
    
    .option-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
}

/* Lead Management Dashboard Styles */

/* Main Dashboard Container */
.leads-dashboard {
    max-width: 1425px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-icon.blue { background-color: #3B82F6; }
.stat-icon.yellow { background-color: #F59E0B; }
.stat-icon.green { background-color: #10B981; }
.stat-icon.purple { background-color: #9333ea; }

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0.25rem 0 0 0;
    font-weight: 500;
}

/* Action Bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-add-lead {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-add-lead:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-archive {
    background: #e4e7ec;
    color: #6b7280;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.search-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 300px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #374151;
}

.search-input::placeholder {
    color: #9CA3AF;
}

/* Lead Cards */
.leads-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.lead-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.lead-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lead-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.lead-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.25rem 0;
}

.lead-details p {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0 0 0.25rem 0;
}

.lead-details .company {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin: 0;
}

.lead-status {
    text-align: right;
}

.status-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.status-tag.pending {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-tag.qualified {
    background-color: #D1FAE5;
    color: #065F46;
}

.status-tag.new {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.lead-time {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.view-details {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
}

.view-details:hover {
    text-decoration: underline;
}

/* Lead Progress */
.lead-progress {
    margin-bottom: 1.5rem;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #E5E7EB;
    z-index: 1;
}

.progress-step.completed:not(:last-child)::after {
    background-color: #9333ea;
}

.step-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: white;
    border: 2px solid #E5E7EB;
}

.step-icon.completed {
    background-color: #9333ea;
    color: white;
    border-color: #9333ea;
}

.step-icon.current {
    background-color: #9333ea;
    color: white;
    border-color: #9333ea;
}

.step-label {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 0.5rem;
    text-align: center;
}

/* Comment Box */
.comment-section {
    margin-bottom: 1.5rem;
}

.comment-box {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
    background: #F9FAFB;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
}

.comment-box:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.comment-box::placeholder {
    color: #9CA3AF;
}

/* Action Buttons */
.lead-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-next-step {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-next-step:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-view-info {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-view-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-more {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-more:hover {
    background: #F3F4F6;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leads-dashboard {
        padding: 1rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .search-filter {
        min-width: auto;
    }
    
    .lead-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lead-status {
        text-align: left;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .lead-actions {
        flex-wrap: wrap;
    }
}

/* Notification Page Styles */

/* Main Container */
.notification-container {
    max-width: 1425px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Important Notice Banner */
.important-notice-banner {
    background-color: #FFFBEB;
    border: 1px solid #FEEBC8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    color: #F6AD55;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-title {
    color: #2D3748;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.notice-text {
    color: #4A5568;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Main Form Container */
.notification-form-container {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-title {
    color: #2D3748;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #4A5568;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Referrers List */
.referrers-list {
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    background: white;
    max-height: 300px;
    overflow-y: auto;
}

.referrer-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #F7FAFC;
    gap: 0.75rem;
}

.referrer-item:last-child {
    border-bottom: none;
}

.select-all-item {
    background-color: #F7FAFC;
    font-weight: 600;
}

.referrer-checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: #9333ea;
    cursor: pointer;
}

.referrer-label {
    color: #2D3748;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}

.referrer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.referrer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.referrer-info {
    flex: 1;
}

.referrer-name {
    color: #2D3748;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.referrer-company {
    color: #718096;
    font-size: 0.75rem;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #2D3748;
    background: white;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #805AD5;
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #2D3748;
    background: white;
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #805AD5;
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.1);
}

.char-limit {
    color: #718096;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Notification Preview */
.notification-preview {
    background-color: #F7FAFC;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.preview-icon {
    color: #805AD5;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.preview-content {
    flex: 1;
}

.preview-title {
    color: #2D3748;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.preview-message {
    color: #2D3748;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.preview-meta {
    color: #718096;
    font-size: 0.75rem;
}

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-cancel {
    background: white;
    color: #4A5568;
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background-color: #F7FAFC;
    border-color: #CBD5E0;
}

.btn-send {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(128, 90, 213, 0.3);
}

/* Search Business Referrer Page Styles */
.search-referrer-container {
    max-width: 1425px;
    margin: 0 auto;
    background: #f8f8f8;
    min-height: 100vh;
    padding: 2rem;
}

.search-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-header {
    margin-bottom: 2rem;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.search-title i {
    color: #666666;
    font-size: 1.25rem;
}

.search-subtitle {
    color: #aaaaaa;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

.search-form {
    margin-bottom: 2rem;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-icon {
    color: #aaaaaa;
    font-size: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #333333;
    background: transparent;
}

.search-input::placeholder {
    color: #aaaaaa;
}

.btn-search {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.search-results {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.results-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1.5rem 0;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eeeeee;
    gap: 1rem;
    transition: background-color 0.2s ease;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background-color: #f9f9f9;
}

.result-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

.result-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-avatar i {
    color: #aaaaaa;
    font-size: 1.25rem;
}

.result-info {
    flex: 1;
}

.result-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin: 0 0 0.25rem 0;
}

.result-company {
    font-size: 0.875rem;
    color: #9333ea;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.result-position {
    font-size: 0.875rem;
    color: #aaaaaa;
    margin: 0;
}

.btn-select {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-select:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.pagination-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.showing-results {
    color: #aaaaaa;
    font-size: 0.875rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid #eeeeee;
    background: white;
    color: #aaaaaa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.pagination-btn:hover {
    border-color: #9333ea;
    color: #9333ea;
}

.pagination-btn.active {
    background: #9333ea;
    color: white;
    border-color: #9333ea;
}

.pagination-btn.disabled {
    background: #f5f5f5;
    color: #cccccc;
    border-color: #eeeeee;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    background: #f5f5f5;
    color: #cccccc;
    border-color: #eeeeee;
}

.pagination-ellipsis {
    color: #aaaaaa;
    font-size: 0.875rem;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-lead-section {
    margin-top: 10px;
    background: white;
    border: 1px solid #9333ea;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.add-lead-header {
    text-align: center;
    margin-bottom: 2rem;
}

.add-lead-icon {
    width: 3rem;
    height: 3rem;
    background: #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
    position: relative;
}

.add-lead-icon::after {
    content: '+';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 1rem;
    height: 1rem;
    background: white;
    border: 2px solid #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #9333ea;
}

.add-lead-title {
    color: #9333ea;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.add-lead-subtitle {
    color: #a78bfa;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
    background: white;
    transition: border-color 0.2s ease;
    font-family: inherit;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-textarea::placeholder {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-referrer-container {
        padding: 1rem;
    }
    
    .search-section,
    .add-lead-section {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pagination-info {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .pagination {
        justify-content: center;
    }
    
    .result-item {
        padding: 0.75rem 1rem;
    }
    
    .search-input-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-search {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-container {
        padding: 1rem 0;
    }
    
    .notification-form-container {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-send {
        width: 100%;
        justify-content: center;
    }
}

/* Send Newsletter Page Styles */
.send-newsletter-container {
    background-color: #F8F9FA;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.send-newsletter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    max-width: 1425px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.header-content {
    flex: 1;
}

.send-newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: #343A40;
    margin: 0 0 0.5rem 0;
}

.send-newsletter-subtitle {
    font-size: 1rem;
    color: #6C757D;
    margin: 0;
    font-weight: 400;
}

.btn-back-send-nl {
    background: #F8F9FA;
    color: #343A40;
    border: 1px solid #DCE0E3;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-back-send-nl:hover {
    background: #E9ECEF;
    border-color: #ADB5BD;
    color: #212529;
    text-decoration: none;
}

.send-newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
    padding: 1rem;
}

.send-newsletter-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.send-newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Card Styles */
.recipients-card-send-nl,
.template-card-send-nl,
.options-card-send-nl,
.preview-card-send-nl,
.overview-card-send-nl {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.card-title-send-nl {
    font-size: 1.25rem;
    font-weight: 700;
    color: #343A40;
    margin: 0 0 1.5rem 0;
}

.subtitle-send-nl {
    font-size: 0.875rem;
    color: #6C757D;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

/* Radio Group Styles */
.radio-group-send-nl {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.radio-option-send-nl {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.radio-option-send-nl input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #9333ea;
}

.radio-option-send-nl label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 500;
}

/* Radio Group Inline - One Line Layout */
.radio-group-send-nl-inline {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.radio-group-send-nl-inline .radio-option-send-nl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-group-send-nl-inline .radio-option-send-nl label {
    margin: 0;
    display: block;
    flex-direction: row;
}

.option-title-send-nl {
    font-weight: 600;
    color: #343A40;
}

.option-desc-send-nl {
    font-size: 0.75rem;
    color: #6C757D;
    font-weight: 400;
}

/* Program List Styles */
.program-list-send-nl {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.program-item-send-nl {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #DCE0E3;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}


.program-checkbox-send-nl {
    position: relative;
}

.program-checkbox-send-nl input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #9333ea;
}

.program-info-send-nl {
    flex: 1;
}

.program-name-send-nl {
    font-size: 0.875rem;
    font-weight: 600;
    color: #343A40;
    margin: 0 0 0.25rem 0;
}

.program-count-send-nl {
    font-size: 0.75rem;
    color: #6C757D;
    margin: 0;
}

.selected-summary-send-nl {
    background: #EEE6F7;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9333ea;
}

.selected-summary-send-nl i {
    font-size: 0.75rem;
}

/* Template Grid Styles */
.template-grid-send-nl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.template-item-send-nl {
    position: relative;
    padding: 1rem;
    border: 1px solid #DCE0E3;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.template-item-send-nl.selected-send-nl {
    background: #EEE6F7;
    border-color: #9333ea;
}

.template-check-send-nl {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: #9333ea;
    font-size: 0.875rem;
}

.template-desc-send-nl {
    font-size: 0.875rem;
    font-weight: 600;
    color: #343A40;
    margin: 0 0 0.5rem 0;
}

.template-name-send-nl {
    font-size: 0.75rem;
    color: #6C757D;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.template-preview-send-nl {
    font-size: 0.625rem;
    color: #ADB5BD;
    margin: 0;
    font-style: italic;
}

.edit-template-link-send-nl {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.edit-template-link-send-nl:hover {
    text-decoration: none;
}

.edit-template-link-send-nl i {
    font-size: 0.75rem;
}

/* Preview Content Styles */
.preview-content-send-nl {
    margin-bottom: 1rem;
}

.preview-field-send-nl {
    margin-bottom: 1rem;
}

.field-label-send-nl {
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.field-value-send-nl {
    font-size: 1rem;
    font-weight: 700;
    color: #343A40;
}

.preview-text-send-nl {
    font-size: 0.875rem;
    color: #343A40;
    line-height: 1.5;
    margin-top: 0.25rem;
}

.full-preview-link-send-nl {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.full-preview-link-send-nl:hover {
    text-decoration: none;
}

.full-preview-link-send-nl i {
    font-size: 0.75rem;
}

/* Overview Details Styles */
.overview-details-send-nl {
    margin-bottom: 1.5rem;
}

.detail-item-send-nl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.detail-item-send-nl:last-child {
    margin-bottom: 0;
}

.detail-label-send-nl {
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 500;
}

.detail-value-send-nl {
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 600;
}

.detail-value-send-nl.cost-send-nl {
    color: #9333ea;
}

/* Button Styles */
.btn-send-newsletter-send-nl {
    background: #9333ea;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 0.75rem;
}

.btn-send-newsletter-send-nl:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 51, 153, 0.3);
}

.btn-test-email-send-nl {
    background: transparent;
    color: #343A40;
    border: 1px solid #DCE0E3;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-test-email-send-nl:hover {
    background: #F8F9FA;
    border-color: #ADB5BD;
}

.btn-send-newsletter-send-nl i,
.btn-test-email-send-nl i {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .send-newsletter-container {
        padding: 1rem 0;
    }
    
    .send-newsletter-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .send-newsletter-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .template-grid-send-nl {
        grid-template-columns: 1fr;
    }
    
    .btn-back-send-nl {
        justify-content: center;
    }
}

/* Schedule Newsletter Page Styles */
.schedule-newsletter-container-schedule-nl {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.schedule-newsletter-header-schedule-nl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.schedule-newsletter-title-section-schedule-nl {
    flex: 1;
}

.schedule-newsletter-title-schedule-nl {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.schedule-newsletter-subtitle-schedule-nl {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.schedule-newsletter-back-btn-schedule-nl {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.schedule-newsletter-back-btn-schedule-nl:hover {
    background: #f3f4f6;
    color: #374151;
}

.schedule-newsletter-content-schedule-nl {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1rem;
}

.schedule-newsletter-left-column-schedule-nl {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-newsletter-right-column-schedule-nl {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-newsletter-card-schedule-nl {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.schedule-newsletter-card-title-schedule-nl {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.schedule-newsletter-radio-group-schedule-nl {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-newsletter-radio-group-schedule-nl-2 {
    flex-direction: column;
}

.schedule-newsletter-radio-label-schedule-nl {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.schedule-newsletter-radio-label-schedule-nl input[type="radio"] {
    display: none;
}

.schedule-newsletter-radio-custom-schedule-nl {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.schedule-newsletter-radio-label-schedule-nl input[type="radio"]:checked + .schedule-newsletter-radio-custom-schedule-nl {
    border-color: #9333ea;
    background: #9333ea;
}

.schedule-newsletter-radio-label-schedule-nl input[type="radio"]:checked + .schedule-newsletter-radio-custom-schedule-nl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.schedule-newsletter-radio-content-schedule-nl {
    flex: 1;
}

.schedule-newsletter-radio-title-schedule-nl {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.schedule-newsletter-radio-desc-schedule-nl {
    font-size: 0.875rem;
    color: #6b7280;
}

.schedule-newsletter-programs-section-schedule-nl {
    margin-bottom: 1.5rem;
}

.schedule-newsletter-programs-label-schedule-nl {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.schedule-newsletter-program-cards-schedule-nl {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-newsletter-program-card-schedule-nl {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.schedule-newsletter-program-checkbox-schedule-nl {
    margin-top: 4px;
}

.schedule-newsletter-check-icon-schedule-nl {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    color: #3b82f6;
    font-size: 0.875rem;
}

.schedule-newsletter-program-content-schedule-nl {
    margin-left: 0.75rem;
}

.schedule-newsletter-program-name-schedule-nl {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.schedule-newsletter-program-count-schedule-nl {
    font-size: 0.875rem;
    color: #6b7280;
}

.schedule-newsletter-recipients-summary-schedule-nl {
    background: #faf5ff;
    color: #9333ea;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.schedule-newsletter-template-cards-schedule-nl {
    display: flex;
    gap: 0.75rem;
}

.schedule-newsletter-template-card-schedule-nl {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.schedule-newsletter-template-card-selected-schedule-nl {
    border-color: #9333ea;
    background: #faf5ff;
}

.schedule-newsletter-template-check-schedule-nl {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: #9333ea;
    font-size: 0.875rem;
}

.schedule-newsletter-template-content-schedule-nl {
    padding-right: 1.5rem;
}

.schedule-newsletter-template-name-schedule-nl {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.schedule-newsletter-template-desc-schedule-nl {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.schedule-newsletter-template-preview-schedule-nl {
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
}

.schedule-newsletter-datetime-section-schedule-nl {
    background: #f3e8ff;
    padding: 1.5rem;
    border-radius: 0 0 12px 12px;
    margin-top: 1rem;
    border-left: 4px solid #9333ea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-newsletter-datetime-title-schedule-nl {
    font-size: 1.125rem;
    font-weight: 700;
    color: #343A40;
    margin: 0 0 1.5rem 0;
}

.schedule-newsletter-datetime-row-schedule-nl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.schedule-newsletter-datetime-group-schedule-nl {
    margin-bottom: 1rem;
}

.schedule-newsletter-datetime-group-schedule-nl:last-child {
    margin-bottom: 0;
}

.schedule-newsletter-datetime-label-schedule-nl {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.schedule-newsletter-datetime-input-schedule-nl {
    position: relative;
}

.schedule-newsletter-input-schedule-nl,
.schedule-newsletter-select-schedule-nl {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    color: #343A40;
}

.schedule-newsletter-input-schedule-nl:focus,
.schedule-newsletter-select-schedule-nl:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.schedule-newsletter-input-icon-schedule-nl {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.875rem;
    pointer-events: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Enhanced date/time picker icon styles */
.schedule-newsletter-datetime-input-schedule-nl .fa-calendar,
.schedule-newsletter-datetime-input-schedule-nl .fa-clock {
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.2s ease, transform 0.2s ease;
}

.schedule-newsletter-datetime-input-schedule-nl .fa-calendar:hover,
.schedule-newsletter-datetime-input-schedule-nl .fa-clock:hover {
    color: #8b5cf6;
    transform: translateY(-50%) scale(1.1);
}

.schedule-newsletter-input-schedule-nl:focus + .schedule-newsletter-input-icon-schedule-nl,
.schedule-newsletter-datetime-input-schedule-nl:focus-within .schedule-newsletter-input-icon-schedule-nl {
    color: #8b5cf6;
}

/* Flatpickr calendar positioning improvements */
.flatpickr-calendar {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
}

.flatpickr-time {
    border-radius: 0 0 8px 8px;
}

/* Better focus states for date/time inputs */
.schedule-newsletter-input-schedule-nl.datepicker-schedule:focus,
.schedule-newsletter-input-schedule-nl.timepicker-schedule:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.schedule-newsletter-summary-details-schedule-nl {
    margin-bottom: 1.5rem;
}

.schedule-newsletter-summary-item-schedule-nl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.schedule-newsletter-summary-item-schedule-nl:last-child {
    border-bottom: none;
}

.schedule-newsletter-summary-label-schedule-nl {
    font-size: 0.875rem;
    color: #6b7280;
}

.schedule-newsletter-summary-value-schedule-nl {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.schedule-newsletter-summary-value-purple-schedule-nl {
    color: #9333ea;
}

.schedule-newsletter-summary-value-orange-schedule-nl {
    color: #f59e0b;
}

.schedule-newsletter-info-box-schedule-nl {
    background: #fef3c7;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.schedule-newsletter-preview-content-schedule-nl {
    margin-bottom: 1rem;
}

.schedule-newsletter-preview-subject-schedule-nl {
    margin-bottom: 1rem;
}

.schedule-newsletter-preview-body-schedule-nl {
    margin-bottom: 1rem;
}

.schedule-newsletter-preview-label-schedule-nl {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.schedule-newsletter-preview-subject-text-schedule-nl {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.schedule-newsletter-preview-text-schedule-nl {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.schedule-newsletter-preview-link-schedule-nl {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-newsletter-actions-schedule-nl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-newsletter-primary-btn-schedule-nl {
    background: #9333ea;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.schedule-newsletter-primary-btn-schedule-nl:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.schedule-newsletter-secondary-btn-schedule-nl {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.schedule-newsletter-secondary-btn-schedule-nl:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.schedule-newsletter-draft-link-schedule-nl {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

/* Archive My Leads Page Styles */
.archive-ml-container {
    background-color: #F8F9FA;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1425px;
    margin: 0 auto;
}

.archive-ml-section {
    margin-bottom: 3rem;
}

.archive-ml-section:last-child {
    margin-bottom: 0;
}

.archive-ml-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.archive-ml-section-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.archive-ml-success-icon {
    background-color: #28A745;
}

.archive-ml-lost-icon {
    background-color: #DC3545;
}

.archive-ml-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #343A40;
    margin: 0;
}

.archive-ml-leads-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.archive-ml-lead-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.archive-ml-lead-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.archive-ml-lead-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.archive-ml-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.archive-ml-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-ml-lead-details h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #343A40;
    margin: 0 0 0.25rem 0;
}

.archive-ml-lead-position {
    font-size: 0.875rem;
    color: #6C757D;
    margin: 0 0 0.25rem 0;
}

.archive-ml-lead-company {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin: 0;
}

.archive-ml-lead-status {
    text-align: right;
}

.archive-ml-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.archive-ml-success-badge {
    content: "✓";
    background: #dcfce7;
    color: #166534;
}

.archive-ml-lost-badge {
    content: "✗";
    background: #ffe6e6b0;
    color: #DC3545;
}

.archive-ml-header-btns {
    background: #e9ecef8a;
    display: flex;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    width: fit-content; 
    margin-bottom: 2rem;
}

.archive-ml-all-btn {
    background: transparent;
    color: #374151;
    border: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.archive-ml-success-btn {
    background: transparent;
    color: #374151;
    border: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.archive-ml-lost-btn {
    background: transparent;
    color: #374151;
    border: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}
.archive-ml-lead-date {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
}

.archive-ml-lead-data {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.archive-ml-data-item {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.archive-ml-referrer {
    background: #e9ecef8a;
}

.archive-ml-commission {
    background: #dcffdca1;
}

.archive-ml-deal-value {
    background: #f0e6ffab;
}

.archive-ml-loss-reason {
    background: #ffe6e6b0;
}

.archive-ml-potential-value {
    background: #F0E6FF;
}

.archive-ml-data-label {
    font-size: 0.75rem;
    color: #6C757D;
    font-weight: 400;
}

.archive-ml-data-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #343A40;
}

.archive-ml-commission .archive-ml-data-value {
    color: #28A745;
}

.archive-ml-deal-value .archive-ml-data-value,
.archive-ml-potential-value .archive-ml-data-value {
    color: #9333ea;
}

.archive-ml-loss-reason .archive-ml-data-value {
    color: #DC3545;
}

.archive-ml-lead-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.archive-ml-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.archive-ml-btn-view {
    background-color: #9333ea;
    color: white;
}

.archive-ml-btn-view:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 16, 242, 0.3);
}

.archive-ml-btn-retrieve {
    background-color: #FD7E14;
    color: white;
}

.archive-ml-btn-retrieve:hover {
    background-color: #E76F00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
}

.archive-ml-btn i {
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .archive-ml-container {
        padding: 1rem 0;
    }
    
    .archive-ml-lead-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .archive-ml-lead-status {
        text-align: left;
    }
    
    .archive-ml-lead-data {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .archive-ml-lead-actions {
        flex-direction: column;
    }
    
    .archive-ml-btn {
        justify-content: center;
    }
}

/* Auto Email Sequence Page Styles */
.auto-email-sequence-container-sequence-nl {
    background-color: #F8F9FA;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.auto-email-sequence-header-sequence-nl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    max-width: 1425px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.header-content-sequence-nl {
    flex: 1;
}

.auto-email-sequence-title-sequence-nl {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343A40;
    margin: 0 0 0.5rem 0;
}

.auto-email-sequence-subtitle-sequence-nl {
    font-size: 1.1rem;
    color: #6C757D;
    margin: 0;
    font-weight: 400;
}

.btn-back-sequence-nl {
    background: none;
    border: none;
    color: #6C757D;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back-sequence-nl:hover {
    background: #E9ECEF;
    color: #343A40;
    text-decoration: none;
}

.auto-email-sequence-content-sequence-nl {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1rem;
}

.auto-email-sequence-left-sequence-nl {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auto-email-sequence-right-sequence-nl {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Card Styles */
.sequence-config-card-sequence-nl,
.sequence-trigger-card-sequence-nl,
.schedule-settings-card-sequence-nl,
.email-sequence-flow-card-sequence-nl,
.sequence-summary-card-sequence-nl,
.expected-performance-card-sequence-nl {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.card-title-sequence-nl {
    font-size: 1.25rem;
    font-weight: 700;
    color: #343A40;
    margin: 0 0 1.5rem 0;
}

/* Form Styles */
.form-group-sequence-nl {
    margin-bottom: 1.5rem;
}

.form-group-sequence-nl:last-child {
    margin-bottom: 0;
}

.form-label-sequence-nl {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #343A40;
    margin-bottom: 0.5rem;
}

.form-input-sequence-nl,
.form-select-sequence-nl {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #DEE2E6;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #343A40;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-sequence-nl:focus,
.form-select-sequence-nl:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-input-sequence-nl::placeholder {
    color: #ADB5BD;
}

.form-select-sequence-nl {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.form-row-sequence-nl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-with-icon-sequence-nl {
    position: relative;
}

.input-icon-sequence-nl {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6C757D;
    font-size: 0.875rem;
    pointer-events: none;
}

/* Radio Group Styles */
.radio-group-sequence-nl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option-sequence-nl {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.radio-option-sequence-nl input[type="radio"] {
    display: none;
}

.radio-custom-sequence-nl {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.radio-option-sequence-nl input[type="radio"]:checked + .radio-custom-sequence-nl {
    border-color: #9333ea;
    background: #9333ea;
}

.radio-option-sequence-nl input[type="radio"]:checked + .radio-custom-sequence-nl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-content-sequence-nl {
    flex: 1;
}

.radio-title-sequence-nl {
    display: block;
    font-weight: 600;
    color: #343A40;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.radio-desc-sequence-nl {
    display: block;
    font-size: 0.75rem;
    color: #6C757D;
    line-height: 1.4;
}

/* Email Sequence Flow Styles */
.email-steps-sequence-nl {
    margin-bottom: 1.5rem;
}

.email-step-sequence-nl {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #FAFAFA;
}

.email-step-sequence-nl:last-child {
    margin-bottom: 0;
}

.step-number-sequence-nl {
    width: 32px;
    height: 32px;
    background: #9333ea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content-sequence-nl {
    flex: 1;
}

.step-header-sequence-nl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.step-title-sequence-nl {
    font-size: 1rem;
    font-weight: 700;
    color: #343A40;
    margin: 0;
}

.step-edit-sequence-nl {
    color: #6C757D;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.step-edit-sequence-nl:hover {
    color: #007BFF;
}

.step-template-sequence-nl {
    font-size: 0.875rem;
    color: #6C757D;
    margin: 0 0 0.25rem 0;
}

.step-delay-sequence-nl {
    font-size: 0.875rem;
    color: #6C757D;
    margin: 0;
}

.highlight-blue-sequence-nl {
    color: #007BFF;
    font-weight: 600;
}

.highlight-orange-sequence-nl {
    color: #FD7E14;
    font-weight: 600;
}

.btn-add-email-sequence-nl {
    background: white;
    color: #343A40;
    border: 1px solid #DEE2E6;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-add-email-sequence-nl:hover {
    background: #F8F9FA;
    border-color: #ADB5BD;
}

/* Summary Details Styles */
.summary-details-sequence-nl {
    margin-bottom: 0;
}

.summary-item-sequence-nl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F3F4F6;
}

.summary-item-sequence-nl:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-label-sequence-nl {
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 500;
}

.summary-value-sequence-nl {
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 600;
}

.status-draft-sequence-nl {
    color: #FD7E14;
    font-weight: 600;
}

/* Performance Metrics Styles */
.performance-metrics-sequence-nl {
    margin-bottom: 0;
}

.metric-item-sequence-nl {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    background: #f3f3f3;
    padding: 0.3rem;
    border-radius: 8px;
}

.metric-item-sequence-nl:last-child {
    margin-bottom: 0;
}

.metric-label-sequence-nl {
    font-size: 0.875rem;
    color: #343A40;
    font-weight: 500;
}

.metric-value-sequence-nl {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.metric-purple-sequence-nl {
    color: #9333ea;
}

.metric-green-sequence-nl {
    color: #28A745;
}

.metric-blue-sequence-nl {
    color: #007BFF;
}

/* Action Buttons Styles */
.action-buttons-sequence-nl {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-activate-sequence-nl {
    background: #9333ea;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.btn-activate-sequence-nl:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.btn-save-draft-sequence-nl,
.btn-test-sequence-nl {
    background: white;
    color: #343A40;
    border: 1px solid #DEE2E6;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-save-draft-sequence-nl:hover,
.btn-test-sequence-nl:hover {
    background: #F8F9FA;
    border-color: #ADB5BD;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auto-email-sequence-container-sequence-nl {
        padding: 1rem 0;
    }
    
    .auto-email-sequence-header-sequence-nl {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .auto-email-sequence-content-sequence-nl {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row-sequence-nl {
        grid-template-columns: 1fr;
    }
    
    .btn-back-sequence-nl {
        justify-content: center;
    }
    
    .email-step-sequence-nl {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .step-header-sequence-nl {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Referaly Finder Page Styles */
.referaly-finder-container-rf {
    background-color: #F8F8F8;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.referaly-finder-wrapper-rf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1rem;
}

.referaly-finder-left-rf {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.referaly-finder-right-rf {
    display: flex;
    flex-direction: column;
}

/* Card Styles */
.grow-network-card-rf,
.how-it-works-card-rf,
.matchmaking-card-rf {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.card-header-rf {
    margin-bottom: 1.5rem;
}

.card-title-rf {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.5rem 0;
}

.card-subtitle-rf {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Form Styles */
.form-section-rf {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-rf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-rf {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
}

.form-input-rf {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333333;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-rf:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-input-rf::placeholder {
    color: #A0A0A0;
}

/* Input with Button */
.input-with-button-rf {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.input-with-button-rf .form-input-rf {
    flex: 1;
}

.btn-add-rf {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-add-rf:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(138, 43, 226, 0.3);
}

/* Tags */
.tags-container-rf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag-rf {
    background: #EEE6F7;
    color: #9333ea;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-remove-rf {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: bold;
    opacity: 0.8;
}

.tag-remove-rf:hover {
    opacity: 1;
}

/* Radio Group */
.radio-group-rf {
    display: flex;
    gap: 1rem;
}

.radio-option-rf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #333333;
}

.radio-option-rf input[type="radio"] {
    display: none;
}

.radio-custom-rf {
    width: 18px;
    height: 18px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.radio-option-rf input[type="radio"]:checked + .radio-custom-rf {
    border-color: #9333ea;
    background: #9333ea;
}

.radio-option-rf input[type="radio"]:checked + .radio-custom-rf::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Button Group */
.button-group-rf {
    display: flex;
    gap: 0.5rem;
}

.btn-toggle-rf {
    padding: 0.75rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    color: #333333;
}

.btn-toggle-active-rf {
    background: #9333ea;
    color: white;
    border-color: #9333ea;
}

.btn-toggle-rf:hover:not(.btn-toggle-active-rf) {
    border-color: #9333ea;
    color: #9333ea;
}

/* Find Referrers Button */
.btn-find-referrers-rf {
    width: 100%;
    background: #9333ea;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.btn-find-referrers-rf:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

/* How It Works Section */
.video-section-rf {
    margin-bottom: 1.5rem;
}

.video-player-rf {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-wrapper-rf {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper-rf video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.video-player-rf video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.video-play-pause-btn-rf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.video-play-pause-btn-rf:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.video-play-pause-btn-rf:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.video-play-pause-btn-rf i {
    font-size: 28px;
    color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-pause-btn-rf i.fa-play {
    margin-left: 2px;
}

.video-play-pause-btn-rf.playing i.fa-play {
    display: none;
}

.video-play-pause-btn-rf:not(.playing) i.fa-pause {
    display: none;
}

.video-play-pause-btn-rf.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.play-icon-rf {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: #9333ea;
}

.video-text-rf h3 {
    color: #333333;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
}

.video-text-rf p {
    color: #666666;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* Features Grid */
.features-grid-rf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card-rf {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #F3F4F6;
}

.feature-icon-rf {
    width: 3rem;
    height: 3rem;
    background: #F0E6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    color: #9333ea;
    font-size: 1.25rem;
}

.feature-title-rf {
    font-size: 0.875rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.25rem 0;
}

.feature-desc-rf {
    font-size: 0.75rem;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Matchmaking Section */
.professionals-list-rf {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.professional-card-rf {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.professional-card-rf:nth-child(1) { animation-delay: 0.1s; }
.professional-card-rf:nth-child(2) { animation-delay: 0.2s; }
.professional-card-rf:nth-child(3) { animation-delay: 0.3s; }
.professional-card-rf:nth-child(4) { animation-delay: 0.4s; }
.professional-card-rf:nth-child(5) { animation-delay: 0.5s; }

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

.professional-card-rf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9333ea, #7c3aed, #6d28d9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-card-rf:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #9333ea;
}

.professional-card-rf:hover::before {
    opacity: 1;
}

.professional-avatar-rf {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 3px solid #F3F4F6;
    transition: all 0.3s ease;
}

.professional-avatar-rf img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.professional-card-rf:hover .professional-avatar-rf {
    border-color: #9333ea;
    transform: scale(1.05);
}

.professional-card-rf:hover .professional-avatar-rf img {
    transform: scale(1.1);
}

.professional-info-rf {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.professional-name-rf {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    line-height: 1.3;
}

.professional-title-rf {
    font-size: 0.9rem;
    color: #9333ea;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.professional-desc-rf {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.professional-card-inner-rf {
    width: 100%;
}

.professional-card-main-rf {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
}

.professional-avatar-rf {
    align-self: flex-start;
}

.professional-contact-rf {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #F3F4F6;
}

.contact-item-rf {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #4B5563;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.contact-item-rf:hover {
    color: #9333ea;
}

.contact-item-rf i {
    color: #9333ea;
    font-size: 0.875rem;
    width: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-item-rf:hover i {
    transform: scale(1.1);
}

.btn-view-profile-rf {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-view-profile-rf::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.5s ease;
}

.btn-view-profile-rf:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.btn-view-profile-rf:hover::before {
    left: 100%;
}

.btn-view-profile-rf:active {
    transform: translateY(0);
}

/* Load More Button */
.btn-load-more-rf {
    width: 100%;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    color: #475569;
    border: 2px solid #E2E8F0;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-load-more-rf:hover {
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    border-color: #9333ea;
    color: #9333ea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
}

.profile-modal-rf {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 99999;
}

.profile-modal-rf.profile-modal-open {
    display: flex;
}

.profile-modal-overlay-rf {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
}

.profile-modal-content-rf {
    position: relative;
    max-width: 480px;
    width: 100%;
    z-index: 1;
}

.profile-modal-close-rf {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #FFFFFF;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    color: #4B5563;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.95rem;
    line-height: 1;
}

.profile-modal-close-rf:hover,
.profile-modal-close-rf:focus-visible {
    transform: scale(1.05);
    color: #7c3aed;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.25);
}

.profile-modal-close-rf i {
    pointer-events: none;
}

.profile-modal-card-rf {
    margin: 0;
}

.profile-modal-card-rf .profile-header-finder-view {
    justify-content: center;
}

.profile-modal-card-rf .profile-picture-finder-view {
    margin: 0 auto;
}

body.profile-modal-body-open {
    overflow: hidden;
}

/* Responsive Design for Referaly Finder */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .referaly-finder-container-rf {
        padding: 1.5rem 0;
    }
    
    .referaly-finder-wrapper-rf {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .grow-network-card-rf,
    .how-it-works-card-rf,
    .matchmaking-card-rf {
        padding: 1.25rem;
    }
    
    .features-grid-rf {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .referaly-finder-container-rf {
        padding: 1rem 0;
    }
    
    .referaly-finder-wrapper-rf {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .referaly-finder-left-rf {
        gap: 1.25rem;
    }
    
    .grow-network-card-rf,
    .how-it-works-card-rf,
    .matchmaking-card-rf {
        padding: 1rem;
    }
    
    .card-title-rf {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }
    
    .card-subtitle-rf {
        font-size: 0.8rem;
    }
    
    .form-section-rf {
        gap: 1.25rem;
    }
    
    .form-group-rf {
        gap: 0.375rem;
    }
    
    .form-label-rf {
        font-size: 0.8rem;
    }
    
    .form-input-rf {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .input-with-button-rf {
        flex-direction: column;
        gap: 0.375rem;
    }
    
    .input-with-button-rf .form-input-rf {
        width: 100%;
    }
    
    .btn-add-rf {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
        align-self: flex-start;
    }
    
    .professional-card-main-rf {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .professional-contact-rf {
        width: 100%;
        gap: 0.5rem;
        padding-top: 0.5rem;
    }

    .profile-modal-content-rf {
        max-width: 100%;
    }

    .profile-modal-close-rf {
        top: -1.25rem;
        right: 0;
    }
    
    .tags-container-rf {
        gap: 0.375rem;
    }
    
    .tag-rf {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .tag-remove-rf {
        margin-left: 0.25rem;
        font-size: 0.75rem;
    }
    
    .radio-group-rf {
        flex-direction: column;
        gap: 0.375rem;
    }
    
    .radio-option-rf {
        gap: 0.5rem;
    }
    
    .radio-custom-rf {
        width: 16px;
        height: 16px;
    }
    
    .button-group-rf {
        flex-direction: column;
        gap: 0.375rem;
    }
    
    .btn-toggle-rf {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .btn-find-referrers-rf {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .video-player-rf {
        padding: 0;
    }
    
    .video-play-pause-btn-rf {
        width: 60px;
        height: 60px;
    }
    
    .video-play-pause-btn-rf i {
        font-size: 22px;
    }
    
    .play-icon-rf {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .video-text-rf h3 {
        font-size: 1.125rem;
    }
    
    .video-text-rf p {
        font-size: 0.8rem;
    }
    
    .features-grid-rf {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-card-rf {
        padding: 0.875rem;
    }
    
    .feature-icon-rf {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-title-rf {
        font-size: 0.8rem;
        margin-bottom: 0.125rem;
    }
    
    .feature-desc-rf {
        font-size: 0.7rem;
    }
    
    .professionals-list-rf {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .professional-card-rf {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .professional-avatar-rf {
        width: 3.5rem;
        height: 3.5rem;
        align-self: center;
    }
    
    .professional-name-rf {
        font-size: 0.9rem;
        margin-bottom: 0.125rem;
    }
    
    .professional-title-rf {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }
    
    .professional-desc-rf {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .professional-contact-rf {
        gap: 0.125rem;
    }
    
    .contact-item-rf {
        font-size: 0.8rem;
        gap: 0.375rem;
        justify-content: center;
    }
    
    .contact-item-rf i {
        font-size: 0.7rem;
        width: 0.875rem;
    }
    
    .btn-view-profile-rf {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
        align-self: center;
        margin-top: 0.25rem;
    }
    
    .btn-load-more-rf {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .referaly-finder-container-rf {
        padding: 0.75rem 0;
    }
    
    .referaly-finder-wrapper-rf {
        gap: 1.25rem;
        padding: 0 0.75rem;
    }
    
    .grow-network-card-rf,
    .how-it-works-card-rf,
    .matchmaking-card-rf {
        padding: 0.875rem;
    }
    
    .card-title-rf {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .card-subtitle-rf {
        font-size: 0.75rem;
    }
    
    .form-section-rf {
        gap: 1rem;
    }
    
    .form-group-rf {
        gap: 0.25rem;
    }
    
    .form-label-rf {
        font-size: 0.75rem;
    }
    
    .form-input-rf {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .input-with-button-rf {
        gap: 0.25rem;
    }
    
    .btn-add-rf {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .tags-container-rf {
        gap: 0.25rem;
    }
    
    .tag-rf {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        border-radius: 4px;
    }
    
    .tag-remove-rf {
        margin-left: 0.2rem;
        font-size: 0.7rem;
    }
    
    .radio-option-rf {
        gap: 0.375rem;
    }
    
    .radio-custom-rf {
        width: 14px;
        height: 14px;
    }
    
    .btn-toggle-rf {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .btn-find-referrers-rf {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .video-player-rf {
        padding: 0;
    }
    
    .video-play-pause-btn-rf {
        width: 50px;
        height: 50px;
    }
    
    .video-play-pause-btn-rf i {
        font-size: 18px;
    }
    
    .play-icon-rf {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .video-text-rf h3 {
        font-size: 1rem;
    }
    
    .video-text-rf p {
        font-size: 0.75rem;
    }
    
    .feature-card-rf {
        padding: 0.75rem;
    }
    
    .feature-icon-rf {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .feature-title-rf {
        font-size: 0.75rem;
    }
    
    .feature-desc-rf {
        font-size: 0.65rem;
    }
    
    .professionals-list-rf {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .professional-card-rf {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .professional-avatar-rf {
        width: 3rem;
        height: 3rem;
    }
    
    .professional-name-rf {
        font-size: 0.85rem;
    }
    
    .professional-title-rf {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .professional-desc-rf {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }
    
    .contact-item-rf {
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    
    .contact-item-rf i {
        font-size: 0.65rem;
        width: 0.75rem;
    }
    
    .btn-view-profile-rf {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .btn-load-more-rf {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .referaly-finder-container-rf {
        padding: 0.5rem 0;
    }
    
    .referaly-finder-wrapper-rf {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .grow-network-card-rf,
    .how-it-works-card-rf,
    .matchmaking-card-rf {
        padding: 0.75rem;
    }
    
    .card-title-rf {
        font-size: 1rem;
        margin-bottom: 0.125rem;
    }
    
    .card-subtitle-rf {
        font-size: 0.7rem;
    }
    
    .form-section-rf {
        gap: 0.875rem;
    }
    
    .form-label-rf {
        font-size: 0.7rem;
    }
    
    .form-input-rf {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .btn-add-rf {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .tag-rf {
        padding: 0.15rem 0.3rem;
        font-size: 0.65rem;
        border-radius: 3px;
    }
    
    .tag-remove-rf {
        margin-left: 0.15rem;
        font-size: 0.65rem;
    }
    
    .radio-custom-rf {
        width: 12px;
        height: 12px;
    }
    
    .btn-toggle-rf {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .btn-find-referrers-rf {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .video-player-rf {
        padding: 0;
    }
    
    .video-play-pause-btn-rf {
        width: 45px;
        height: 45px;
    }
    
    .video-play-pause-btn-rf i {
        font-size: 16px;
    }
    
    .play-icon-rf {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .video-text-rf h3 {
        font-size: 0.9rem;
    }
    
    .video-text-rf p {
        font-size: 0.7rem;
    }
    
    .feature-card-rf {
        padding: 0.6rem;
    }
    
    .feature-icon-rf {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-title-rf {
        font-size: 0.7rem;
    }
    
    .feature-desc-rf {
        font-size: 0.6rem;
    }
    
    .professional-card-rf {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .professional-avatar-rf {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .professional-name-rf {
        font-size: 0.8rem;
    }
    
    .professional-title-rf {
        font-size: 0.7rem;
    }
    
    .professional-desc-rf {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-item-rf {
        font-size: 0.7rem;
    }
    
    .contact-item-rf i {
        font-size: 0.6rem;
        width: 0.7rem;
    }
    
    .btn-view-profile-rf {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .btn-load-more-rf {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Profile Card Finder View Styles */
.profile-card-finder-view {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 50px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.profile-header-finder-view {
    background: #9333ea;
    padding: 2rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.close-btn-finder-view {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-picture-finder-view {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: transparent;
    padding: 0;
}

.profile-picture-finder-view::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.35);
    z-index: 2;
}

.profile-picture-finder-view img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.online-status-finder-view {
    display: none;
}

.profile-body-finder-view {
    padding: 2rem;
    text-align: center;
}

.profile-name-finder-view {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.profile-title-finder-view {
    font-size: 1rem;
    color: #9333ea;
    margin: 0 0 1rem 0;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.profile-description-finder-view {
    font-size: 0.875rem;
    color: #666666;
    margin: 0 0 2rem 0;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-info-finder-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-block-finder-view {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s ease;
}

.contact-block-finder-view:hover {
    background: #EEEEEE;
}

.contact-icon-finder-view {
    width: 40px;
    height: 40px;
    background: #E0BBE4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-finder-view i {
    color: #9333ea;
    font-size: 1rem;
}

.contact-details-finder-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label-finder-view {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-value-finder-view {
    font-size: 0.875rem;
    color: #333333;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-action-finder-view {
    color: #AAAAAA;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.contact-action-finder-view:hover {
    color: #666666;
}

.contact-action-finder-view i {
    font-size: 0.875rem;
}

/* Membership Subscription Page Styles */
.membership-container-me-ship {
    background-color: #F8F8F8;
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.membership-content-me-ship {
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Current Subscription Section */
.current-subscription-section-me-ship {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.subscription-info-me-ship {
    flex: 1;
}

.subscription-title-me-ship {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1rem 0;
}

.subscription-details-me-ship {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.subscription-plan-me-ship {
    font-size: 1rem;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.subscription-billing-me-ship {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

.subscription-actions-me-ship {
    display: flex;
    gap: 1rem;
}

.btn-invoice-me-ship,
.btn-cancel-me-ship {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid;
    background: white;
}

.btn-invoice-me-ship {
    color: #9333ea;
    border-color: #9333ea;
}

.btn-invoice-me-ship:hover {
    background: #9333ea;
    color: white;
}

.btn-cancel-me-ship {
    color: #DC3545;
    border-color: #DC3545;
}

.btn-cancel-me-ship:hover {
    background: #DC3545;
    color: white;
}

/* Plan Type Selector */
.plan-type-selector-me-ship {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 0.25rem;
    margin: 0 auto 2rem auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: fit-content;
}

.plan-tab-me-ship {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    color: #333333;
    text-decoration: none;
    display: inline-block;
}

.plan-tab-active-me-ship {
    background: #9333ea;
    color: white;
}

/* Pricing Plans */
.pricing-plans-me-ship {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.plan-card-me-ship {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card-popular-me-ship {
    border: 2px solid #9333ea;
}

.popular-badge-me-ship {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #9333ea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.plan-header-me-ship {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name-me-ship {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1rem 0;
}

.plan-price-me-ship {
    margin-bottom: 0.5rem;
}

.price-amount-me-ship {
    font-size: 3rem;
    font-weight: 700;
    color: #9333ea;
    line-height: 1;
}

.price-period-me-ship {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
}

.price-tax-me-ship {
    font-size: 0.875rem;
    color: #888888;
    margin: 0;
}

.plan-description-me-ship {
    margin-bottom: 2rem;
}

.plan-description-me-ship p {
    font-size: 0.875rem;
    color: #333333;
    line-height: 1.5;
    margin: 0;
}

.plan-features-me-ship {
    flex: 1;
    margin-bottom: 2rem;
}

.feature-item-me-ship {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #333333;
}

.feature-item-me-ship:last-child {
    margin-bottom: 0;
}

.feature-check-me-ship {
    color: #28A745;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.btn-choose-plan-me-ship {
    width: 100%;
    background: #9333ea;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-choose-plan-me-ship:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-content-me-ship {
        padding: 0 0.5rem;
    }
    
    .current-subscription-section-me-ship {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .subscription-actions-me-ship {
        justify-content: center;
    }
    
    .pricing-plans-me-ship {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-type-selector-me-ship {
        width: 100%;
        justify-content: center;
    }
    
    .plan-tab-me-ship {
        flex: 1;
        text-align: center;
    }
}

/* Digital Signature Page Styles */
.digital-signature-container-digi-sig {
    min-height: 100vh;
    padding: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.digital-signature-wrapper-digi-sig {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Left Column - Information Form */
.information-form-card-digi-sig {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.form-title-digi-sig {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 2rem 0;
}

.form-group-digi-sig {
    margin-bottom: 1.5rem;
}

.form-group-digi-sig:last-child {
    margin-bottom: 0;
}

.form-label-digi-sig {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
}

/* Profile Picture Section */
.profile-picture-section-digi-sig {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-picture-placeholder-digi-sig {
    width: 80px;
    height: 80px;
    background-color: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAA;
    font-size: 1.5rem;
}

.btn-upload-photo-digi-sig {
    background: #9333ea;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-upload-photo-digi-sig:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(147, 51, 234, 0.3);
}

/* Form Inputs */
.form-input-digi-sig {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333333;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-digi-sig:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-input-digi-sig::placeholder {
    color: #A0A0A0;
}

/* Social Media Grid */
.social-media-grid-digi-sig {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-input-digi-sig {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    background: white;
}

.social-icon-digi-sig {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.whatsapp-digi-sig {
    background-color: #25D366;
}

.instagram-digi-sig {
    background-color: #E1306C;
}

.facebook-digi-sig {
    background-color: #1877F2;
}

.linkedin-digi-sig {
    background-color: #0A66C2;
}

.social-input-digi-sig input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #333333;
    background: transparent;
}

.social-input-digi-sig input::placeholder {
    color: #A0A0A0;
}

/* Select Dropdown */
.select-wrapper-digi-sig {
    position: relative;
}

.form-select-digi-sig {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333333;
    background: white;
    appearance: none;
    cursor: pointer;
}

.form-select-digi-sig:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.select-arrow-digi-sig {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #AAAAAA;
    font-size: 0.875rem;
    pointer-events: none;
}

/* Generate Button */
.btn-generate-digi-sig {
    width: 100%;
    background: #9333ea;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.btn-generate-digi-sig:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Right Column - Preview Section */
.preview-section-digi-sig {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-card-digi-sig,
.how-it-works-card-digi-sig {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #F3F4F6;
}

.preview-title-digi-sig,
.how-it-works-title-digi-sig {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1.5rem 0;
}

/* Signature Placeholder */
.signature-placeholder-digi-sig {
    background: #F8F8F8;
    border: 2px dashed #D1D1D1;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.signature-placeholder-digi-sig i {
    font-size: 3rem;
    color: #AAAAAA;
    margin-bottom: 1rem;
    display: block;
}

.signature-placeholder-digi-sig p {
    color: #AAAAAA;
    font-size: 0.875rem;
    margin: 0;
}

/* Signature Example */
.signature-example-digi-sig {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.signature-profile-digi-sig {
    flex-shrink: 0;
}

.profile-img-digi-sig {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.signature-content-digi-sig {
    flex: 1;
}

.signature-name-digi-sig {
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.25rem;
}

.signature-title-digi-sig,
.signature-website-digi-sig {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0.25rem;
}

.social-icons-digi-sig {
    display: flex;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.social-icons-digi-sig i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
}

.social-icons-digi-sig i:nth-child(1) {
    background-color: #25D366;
}

.social-icons-digi-sig i:nth-child(2) {
    background-color: #E1306C;
}

.social-icons-digi-sig i:nth-child(3) {
    background-color: #1877F2;
}

.social-icons-digi-sig i:nth-child(4) {
    background-color: #0A66C2;
}

/* Referral Deal Box */
.referral-deal-box-digi-sig {
    background: #F0E6FA;
    border-left: 4px solid #9333ea;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.deal-header-digi-sig {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.deal-header-digi-sig i {
    color: #9333ea;
    font-size: 0.875rem;
}

.deal-header-digi-sig span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
}

.deal-title-digi-sig {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.deal-link-digi-sig {
    font-size: 0.875rem;
    color: #9333ea;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* How it works */
.how-it-works-list-digi-sig {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-it-works-list-digi-sig li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #333333;
    line-height: 1.5;
}

.how-it-works-list-digi-sig li:last-child {
    margin-bottom: 0;
}

.how-it-works-list-digi-sig li i {
    color: #25D366;
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .digital-signature-wrapper-digi-sig {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .social-media-grid-digi-sig {
        grid-template-columns: 1fr;
    }
    
    .signature-example-digi-sig {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons-digi-sig {
        justify-content: center;
    }
}

/* Registration Form Styling */
.registration-container-reg {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.registration-form-wrapper-reg {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 0;
}

.registration-title-reg {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.2;
}

.registration-form-reg {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.registration-field-group-reg {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registration-label-reg {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

.registration-input-reg {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background-color: #f0f0f0;
    font-size: 1rem;
    color: #000;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.registration-input-reg::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.registration-input-reg:focus {
    background-color: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.registration-button-primary-reg {
    width: 100%;
    padding: 16px 20px;
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.registration-button-primary-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.registration-button-google-reg {
    width: 100%;
    padding: 16px 20px;
    background: white;
    color: #333;
    border: 2px solid #9333ea;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.registration-button-google-reg:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.1);
}

.google-icon-reg {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDMuMTgxODJDMTAuOTQ3NCAzLjE4MTgyIDExLjg2MzYgMy40MzYzNiAxMi42MzY0IDMuOTAwOTFMMTUuNDU0NSAxLjQ1NDU1QzE0LjA5MDkgMC41NDU0NTUgMTIuNTkwOSAwIDEwIDBDNi4wOTU0NSAwIDIuNzI3MjcgMi4yNzI3MyAxLjA0NTQ1IDUuNTQ1NDVMMTMuNjM2NCA5LjA5MDkxQzE0LjQ1NDUgNy4yNzI3MyAxNS4wOTA5IDUuMTgxODIgMTUuMDkwOSAyLjcyNzI3TDEwIDMuMTgxODJaIiBmaWxsPSIjRUE0MzM1Ii8+CjxwYXRoIGQ9Ik0xMCAxNkMxMi43MjczIDE2IDE0LjkwOTEgMTQuOTA5MSAxNi4zNjM2IDEzLjA5MDlMMTMuNjM2NCAxMC45MDkxQzEyLjkwOTEgMTEuNzI3MyAxMS41NDU1IDEyLjE4MTggMTAgMTIuMTgxOEM3LjI3MjczIDEyLjE4MTggNC45NTQ1NSAxMC4zNjM2IDQuMTgxODIgNy45MDkwOUwxLjA0NTQ1IDkuNTQ1NDVDMi43MjcyNyAxMi44MTgyIDYuMDkwOTEgMTYgMTAgMTZaIiBmaWxsPSIjNDI4NUY0Ii8+CjxwYXRoIGQ9Ik0xMCAzLjE4MTgyVjYuMzYzNjRIMTUuMDkwOUMxNC45MDkxIDUuNTQ1NDUgMTQuNTQ1NSA0LjgxODE4IDE0LjAwMDAgNC4xODE4MkwxMCAzLjE4MTgyWiIgZmlsbD0iI0ZCQkMwNSIvPgo8L3N2Zz4K') no-repeat center;
    background-size: contain;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .registration-form-wrapper-reg {
        padding: 30px 20px;
    }
    
    .registration-title-reg {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .registration-form-reg {
        gap: 20px;
    }
}

/* Responsive Design for Schedule Newsletter */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .schedule-newsletter-container-schedule-nl {
        padding: 1.5rem 0;
    }
    
    .schedule-newsletter-content-schedule-nl {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .schedule-newsletter-card-schedule-nl {
        padding: 1.25rem;
    }
    
    .schedule-newsletter-template-cards-schedule-nl {
        flex-direction: column;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .schedule-newsletter-container-schedule-nl {
        padding: 1rem 0;
    }
    
    .schedule-newsletter-content-schedule-nl {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .schedule-newsletter-left-column-schedule-nl,
    .schedule-newsletter-right-column-schedule-nl {
        gap: 1.25rem;
    }
    
    .schedule-newsletter-card-schedule-nl {
        padding: 1rem;
    }
    
    .schedule-newsletter-card-title-schedule-nl {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .schedule-newsletter-radio-group-schedule-nl {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .schedule-newsletter-radio-label-schedule-nl {
        gap: 0.5rem;
    }
    
    .schedule-newsletter-radio-custom-schedule-nl {
        width: 18px;
        height: 18px;
    }
    
    .schedule-newsletter-radio-title-schedule-nl {
        font-size: 0.95rem;
    }
    
    .schedule-newsletter-radio-desc-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-program-cards-schedule-nl {
        gap: 0.5rem;
    }
    
    .schedule-newsletter-program-card-schedule-nl {
        padding: 0.875rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .schedule-newsletter-program-checkbox-schedule-nl {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .schedule-newsletter-program-content-schedule-nl {
        margin-left: 0;
    }
    
    .schedule-newsletter-program-name-schedule-nl {
        font-size: 0.95rem;
    }
    
    .schedule-newsletter-program-count-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-recipients-summary-schedule-nl {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-template-cards-schedule-nl {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .schedule-newsletter-template-card-schedule-nl {
        padding: 0.875rem;
    }
    
    .schedule-newsletter-template-content-schedule-nl {
        padding-right: 0;
    }
    
    .schedule-newsletter-template-name-schedule-nl {
        font-size: 0.95rem;
    }
    
    .schedule-newsletter-template-desc-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-template-preview-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-datetime-section-schedule-nl {
        padding: 1.25rem;
        margin-top: 0.75rem;
    }
    
    .schedule-newsletter-datetime-title-schedule-nl {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .schedule-newsletter-datetime-row-schedule-nl {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .schedule-newsletter-datetime-group-schedule-nl {
        margin-bottom: 0.75rem;
    }
    
    .schedule-newsletter-datetime-label-schedule-nl {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }
    
    .schedule-newsletter-input-schedule-nl,
    .schedule-newsletter-select-schedule-nl {
        padding: 0.6rem 2.25rem 0.6rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-input-icon-schedule-nl {
        right: 0.6rem;
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-summary-item-schedule-nl {
        padding: 0.375rem 0;
    }
    
    .schedule-newsletter-summary-label-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-summary-value-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-info-box-schedule-nl {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-preview-label-schedule-nl {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }
    
    .schedule-newsletter-preview-subject-text-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-preview-text-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-preview-link-schedule-nl {
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-actions-schedule-nl {
        gap: 0.75rem;
    }
    
    .schedule-newsletter-primary-btn-schedule-nl {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .schedule-newsletter-secondary-btn-schedule-nl {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-draft-link-schedule-nl {
        font-size: 0.8rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .schedule-newsletter-container-schedule-nl {
        padding: 0.75rem 0;
    }
    
    .schedule-newsletter-content-schedule-nl {
        padding: 0 0.75rem;
    }
    
    .schedule-newsletter-card-schedule-nl {
        padding: 0.875rem;
    }
    
    .schedule-newsletter-card-title-schedule-nl {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .schedule-newsletter-radio-group-schedule-nl {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .schedule-newsletter-radio-custom-schedule-nl {
        width: 16px;
        height: 16px;
    }
    
    .schedule-newsletter-radio-title-schedule-nl {
        font-size: 0.9rem;
    }
    
    .schedule-newsletter-radio-desc-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-program-cards-schedule-nl {
        gap: 0.375rem;
    }
    
    .schedule-newsletter-program-card-schedule-nl {
        padding: 0.75rem;
    }
    
    .schedule-newsletter-program-name-schedule-nl {
        font-size: 0.9rem;
    }
    
    .schedule-newsletter-program-count-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-recipients-summary-schedule-nl {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-template-card-schedule-nl {
        padding: 0.75rem;
    }
    
    .schedule-newsletter-template-name-schedule-nl {
        font-size: 0.9rem;
    }
    
    .schedule-newsletter-template-desc-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-template-preview-schedule-nl {
        font-size: 0.65rem;
    }
    
    .schedule-newsletter-datetime-section-schedule-nl {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .schedule-newsletter-datetime-title-schedule-nl {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .schedule-newsletter-datetime-row-schedule-nl {
        gap: 0.5rem;
    }
    
    .schedule-newsletter-datetime-group-schedule-nl {
        margin-bottom: 0.5rem;
    }
    
    .schedule-newsletter-datetime-label-schedule-nl {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .schedule-newsletter-input-schedule-nl,
    .schedule-newsletter-select-schedule-nl {
        padding: 0.5rem 2rem 0.5rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-input-icon-schedule-nl {
        right: 0.5rem;
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-summary-item-schedule-nl {
        padding: 0.25rem 0;
    }
    
    .schedule-newsletter-summary-label-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-summary-value-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-info-box-schedule-nl {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-preview-label-schedule-nl {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .schedule-newsletter-preview-subject-text-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-preview-text-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-preview-link-schedule-nl {
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-actions-schedule-nl {
        gap: 0.5rem;
    }
    
    .schedule-newsletter-primary-btn-schedule-nl {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .schedule-newsletter-secondary-btn-schedule-nl {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .schedule-newsletter-draft-link-schedule-nl {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .schedule-newsletter-container-schedule-nl {
        padding: 0.5rem 0;
    }
    
    .schedule-newsletter-content-schedule-nl {
        padding: 0 0.5rem;
    }
    
    .schedule-newsletter-card-schedule-nl {
        padding: 0.75rem;
    }
    
    .schedule-newsletter-card-title-schedule-nl {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .schedule-newsletter-radio-group-schedule-nl {
        gap: 0.375rem;
        margin-bottom: 0.875rem;
    }
    
    .schedule-newsletter-radio-custom-schedule-nl {
        width: 14px;
        height: 14px;
    }
    
    .schedule-newsletter-radio-title-schedule-nl {
        font-size: 0.85rem;
    }
    
    .schedule-newsletter-radio-desc-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-program-card-schedule-nl {
        padding: 0.6rem;
    }
    
    .schedule-newsletter-program-name-schedule-nl {
        font-size: 0.85rem;
    }
    
    .schedule-newsletter-program-count-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-recipients-summary-schedule-nl {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-template-card-schedule-nl {
        padding: 0.6rem;
    }
    
    .schedule-newsletter-template-name-schedule-nl {
        font-size: 0.85rem;
    }
    
    .schedule-newsletter-template-desc-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-template-preview-schedule-nl {
        font-size: 0.6rem;
    }
    
    .schedule-newsletter-datetime-section-schedule-nl {
        padding: 0.875rem;
    }
    
    .schedule-newsletter-datetime-title-schedule-nl {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .schedule-newsletter-datetime-label-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-input-schedule-nl,
    .schedule-newsletter-select-schedule-nl {
        padding: 0.4rem 1.75rem 0.4rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-input-icon-schedule-nl {
        right: 0.4rem;
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-summary-label-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-summary-value-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-info-box-schedule-nl {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-preview-label-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-preview-subject-text-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-preview-text-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-preview-link-schedule-nl {
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-primary-btn-schedule-nl {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .schedule-newsletter-secondary-btn-schedule-nl {
        padding: 0.4rem 0.875rem;
        font-size: 0.7rem;
    }
    
    .schedule-newsletter-draft-link-schedule-nl {
        font-size: 0.7rem;
    }
}

/* Contract Details Single Row Layout */
.contract-details-single {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 1rem 0;
}

.contract-details-single .contract-info-item {
    flex: 1;
    text-align: left;
    margin-bottom: 0;
}

.contract-details-single .contract-info-item label {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0.25em;
}

/* Lead Track Module Styles */
.lead-track-module .dropdown-container {
    position: relative;
}

.lead-track-module .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-width: 200px;
    z-index: 99999;
    padding: 4px 0;
}

.lead-track-module .dropdown-item {
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s;
}

.lead-track-module .dropdown-item:hover {
    background-color: #f3f4f6;
}

.lead-track-module .dropdown-item i {
    font-size: 16px;
    color: #dc2626;
}

.lead-track-module .dropdown-item.mark-lost-lead:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Lost Lead Modal Styles */
.lead-track-module .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.lead-track-module .modal-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    border: 2px solid #6b7280;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.lead-track-module .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.lead-track-module .modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    text-align: center;
}

.lead-track-module .modal-body {
    padding: 24px;
}

.lead-track-module .reason-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead-track-module .reason-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
}

.lead-track-module .reason-radio {
    width: 18px;
    height: 18px;
    accent-color: #8b5cf6;
    cursor: pointer;
}

.lead-track-module .reason-text {
    font-size: 16px;
    color: #374151;
    cursor: pointer;
}

.lead-track-module .other-reason-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.lead-track-module .other-reason-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.lead-track-module .other-reason-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
}

.lead-track-module .other-reason-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.lead-track-module .modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.lead-track-module .btn-cancel {
    padding: 10px 20px;
    background: white;
    border: 1px solid #374151;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.lead-track-module .btn-cancel:hover {
    background-color: #f9fafb;
}

.lead-track-module .btn-yes {
    padding: 10px 20px;
    background: #9333ea;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.lead-track-module .btn-yes:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Lead Data Layout */
.lead-track-module .lead-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lead-track-module .lead-data {
    width: 100%;
}

.lead-track-module .lead-data h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.lead-track-module .user-data {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.contract-details-single .contract-info-item span {
    font-weight: 600;
    font-size: 0.97rem;
    color: #000;
}

/* User Type Badge Inline Layout */
.info-item:has(.user-type-badge-inline) {
    flex-direction: row !important;
    align-items: center;
    gap: 1rem;
}

.info-item:has(.user-type-badge-inline) label {
    margin-bottom: 0;
}

/* Fallback for browsers that don't support :has() */
.info-item.user-type-inline {
    flex-direction: row !important;
    align-items: center;
    gap: 1rem;
}

.info-item.user-type-inline label {
    margin-bottom: 0;
}

/* Responsive adjustments for contract details single */
@media (max-width: 768px) {
    .contract-details-single {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .contract-details-single .contract-info-item {
        text-align: left;
        width: 100%;
    }
}

/* Search Collaborators Modal Styles */
.search-collaborators-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-collaborators-modal-card {
    width: 720px;
    max-width: 90vw;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

.search-collaborators-modal-header {
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.search-collaborators-back-btn {
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

.search-collaborators-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    color: #111;
}

.search-collaborators-icon-btn {
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-collaborators-icon {
    color: #9333ea;
    font-size: 18px;
}

.search-collaborators-section {
    padding: 24px;
    background: #fff;
    margin: 16px 16px 0 16px;
    border-radius: 12px;
}

.search-collaborators-section p {
    margin: 0;
    color: #111;
    line-height: 1.6;
    font-size: 14px;
}

.search-collaborators-bar-section {
    display: none;
    padding: 16px 24px;
    background: #fff;
    margin: 16px;
    border-radius: 12px;
}

.search-collaborators-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.search-collaborators-back-small {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #111;
    padding: 0;
}

.search-collaborators-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #111;
}

.search-collaborators-clear-btn {
    display: none;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #9333ea;
    padding: 0;
}

.search-collaborators-results-section {
    display: none;
    overflow: auto;
    padding: 0 16px 24px 16px;
    flex: 1;
}

.search-collaborators-results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-collaborators-no-results {
    display: none;
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.search-result-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.search-collaborators-modal-overlay {
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    .search-collaborators-modal-card {
        width: 95vw;
        max-width: 95vw;
    }
}

.search-result-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.search-result-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.search-result-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-result-icon {
    color: #9333ea;
    font-size: 18px;
}

.search-result-expand {
    color: #9333ea;
    font-size: 14px;
}

.search-result-details {
    padding-left: 0;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.search-result-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.search-result-detail-label {
    color: #6b7280;
    font-size: 14px;
}

.search-result-detail-value {
    color: #9333ea;
    font-size: 14px;
    font-weight: 600;
}

.search-result-detail-value-date {
    color: #111;
    font-size: 14px;
    font-weight: 600;
}

/* Invite Deals Modal Styles */
.invite-deals-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.invite-deals-modal-card {
    width: 420px;
    max-height: 80vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.invite-deals-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.invite-deals-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.invite-deals-modal-close {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.invite-deals-checkbox-section {
    padding: 12px 20px;
}

.invite-deals-select-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
}

.invite-deals-select-all input {
    width: 18px;
    height: 18px;
}

.invite-deals-select-all span {
    font-weight: 600;
}

.invite-deals-list {
    overflow: auto;
    padding: 0 20px 8px 20px;
    flex: 1;
}

.invite-deals-no-deals {
    padding: 0 2px 16px 2px;
    color: #6b7280;
}

.invite-deals-item {
    display: block;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.invite-deals-item-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invite-deals-item input {
    width: 18px;
    height: 18px;
}

.invite-deals-item-name {
    font-weight: 600;
    color: #111827;
}

.invite-deals-modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
}

.invite-deals-continue-btn {
    width: 100%;
    background: #9333ea;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
}

.invite-deals-error-msg {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 6px;
    margin: 12px 20px 0 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Profile Settings Page Styles */
.profile-settings-container {
    min-height: 100vh;
    padding: 2rem 0;
}

.profile-settings-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 1425px;
    margin: 0 auto;
}

/* Navigation Tabs */
.profile-tabs-nav {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.profile-tab {
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.profile-tab:hover {
    color: #4b5563;
}

.profile-tab.active {
    color: #1f2937;
    border-bottom-color: #9333ea;
}

/* Profile Section */
.profile-section {
    margin-bottom: 2.5rem;
}

.profile-section:last-of-type {
    margin-bottom: 0;
}

.profile-section-title {
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

/* Profile Picture Section */
.profile-picture-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.profile-picture-container {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.profile-picture-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.profile-picture-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-picture-overlay:hover {
    background: #f3e8ff;
}

.profile-picture-overlay i {
    color: #9333ea;
    font-size: 0.875rem;
}

.profile-picture-actions {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-upload-picture {
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-upload-picture:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.file-info-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* Information Sections Grid */
.info-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-section {
    width: 100%;
}

/* Form Styles */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1f2937;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Action Buttons */
.profile-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.btn-cancel {
    background: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-save-changes {
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-changes:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-sections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .profile-settings-container {
        padding: 1rem 0;
    }

    .profile-settings-card {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .profile-tabs-nav {
        gap: 1rem;
    }

    .profile-tab {
        font-size: 0.875rem;
    }

    .profile-picture-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-picture-actions {
        align-items: center;
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }

    .profile-actions {
        flex-direction: column-reverse;
    }

    .btn-cancel,
    .btn-save-changes {
        width: 100%;
    }
}

/* Security & Privacy Tab Styles */
.security-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-header-icon {
    width: 48px;
    height: 48px;
    background: #f3e8ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-header-icon i {
    color: #9333ea;
    font-size: 1.25rem;
}

.security-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0 0 0;
}

/* Security Forms Grid */
.security-forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.security-form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

.security-form-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
}

.security-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-input {
    padding-right: 2.5rem;
}

.input-icon {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.875rem;
    pointer-events: none;
}

.btn-security-update {
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

.btn-security-update:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Legal Documents Grid */
.legal-documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.legal-document-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.legal-document-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.legal-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.legal-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-icon.blue {
    background: #dbeafe;
}

.legal-icon.blue i {
    color: #3b82f6;
}

.legal-icon.green {
    background: #d1fae5;
}

.legal-icon.green i {
    color: #10b981;
}

.legal-icon i {
    font-size: 1.125rem;
}

.legal-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.legal-card-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.legal-card-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.legal-calendar-icon {
    font-size: 0.75rem;
}

.legal-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9333ea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-card-link:hover {
    color: #7c3aed;
}

.legal-link-icon {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Security Tips Section */
.security-tips-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

.security-tips-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.security-tips-icon {
    width: 40px;
    height: 40px;
    background: #fef3c7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-tips-icon i {
    color: #f59e0b;
    font-size: 1.125rem;
}

.security-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.security-tip-check {
    color: #9333ea;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Responsive Design for Security Tab */
@media (max-width: 768px) {
    .security-forms-grid,
    .legal-documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .security-section-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .security-header-icon {
        width: 40px;
        height: 40px;
    }

    .security-header-icon i {
        font-size: 1rem;
    }
}

/* Company Information Tab Styles */
.company-logo-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.company-logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.company-logo-placeholder {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-placeholder i {
    color: #6b7280;
    font-size: 3rem;
}

.company-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.company-logo-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-logo-overlay:hover {
    background: #f3e8ff;
}

.company-logo-overlay i {
    color: #9333ea;
    font-size: 0.875rem;
}

.company-logo-actions {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-upload-logo {
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-upload-logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #1f2937;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-textarea::placeholder {
    color: #9ca3af;
}

/* Form Helper Text */
.form-helper-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.375rem 0 0 0;
    line-height: 1.4;
}

/* Responsive Design for Company Tab */
@media (max-width: 768px) {
    .company-logo-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-logo-actions {
        align-items: center;
    }

    .company-logo-container {
        width: 120px;
        height: 120px;
    }
}
