/* Event Agenda Builder Styles */
.eab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

/* Progress Bar */
.eab-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
}

.eab-progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

.eab-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
}

.eab-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.eab-step.active .eab-step-number {
    background-color: #F1614B;
    color: white;
}

.eab-step.completed .eab-step-number {
    background-color: #10b981;
    color: white;
}

.eab-step-label {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    font-weight: 500;
}

.eab-step.active .eab-step-label {
    color: #F1614B;
    font-weight: 600;
}

/* Form Container */
.eab-form-container {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}
#step-1 .eab-form-container {
    max-width: 800px;
    margin: 50px auto 20px;
    padding: 20px;
    background: #fff;
    border: inherit;
    box-sizing: border-box;
    box-shadow: 0px 7px 18px 0px rgb(0 0 0 / 12%);
    border-radius: 30px;
}
.eab-form-container h2 {
    /* margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #111827; */
}
button.eab-btn-primary {
    width: 100%;
    font-family: 'TT_Norms_Pro_Bold' !important;
    letter-spacing: 0px;
    font-size: 18px;
    padding: 10px 25px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
    background-image: linear-gradient(to right, #f96634 0%, #ef4678 100%);
    background-repeat: repeat-x;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 0 0 10px 0;
    text-transform: none;
}
button.eab-btn-primary:hover {
    background-image: linear-gradient(to right, #f96634 0%, #ef4678 100%);
}
.eab-form-container p.eab-subtitle {
    margin: 0 0 10px 0;
    color: #6b7280;
    font-size: 16px;
    text-align: left;
}

/* Form Elements */
.eab-modal .eab-form-group {
    margin-bottom: 10px;
}

.eab-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
#step-1 .eab-form-actions .eab-btn {
    margin: 10px 0 0 0;
}
#step-1 .eab-label {
    margin: 0;
}
.eab-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.eab-required {
    color: #ef4444;
}

.eab-input-wrapper {
    position: relative;
}
#step-1 .eab-form-container h2 {
    text-transform: none;
    margin: 0;
}
.eab-input {
    width: 94%;
    padding: 12px;
    border: 1px solid #C2D0DC !important;
    border-radius: 10px;
    background-color: #fff;
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 1.15;
}

.eab-input:focus {
    outline: none;
    border-color: #F1614B;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.eab-input::placeholder {
    color: #9ca3af;
}

.eab-error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    min-height: 20px;
}

.eab-form-help {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Buttons */
.eab-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.eab-btn-primary {
    background-color: #F1614B;
    color: white;
    border-color: #F1614B;
}
button.eab-btn-outline,button.eab-btn-secondary {
    width: 100%;
    font-family: 'TT_Norms_Pro_Bold' !important;
    letter-spacing: 0px;
    font-size: 18px;
    padding: 10px 25px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
    background-image: none;
    background-color: #fff;
    background-repeat: repeat-x;
    color: white;
    border: 1px solid #F1614B;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 0 0 10px 0;
    text-transform: none;
    color: #F1614B;
}
.eab-btn-primary:hover {
    background-color: #7c3aed;
    border-color: #7c3aed;
}
.eab-form-actions .eab-btn {
    width: 265px;
    margin: 20px;
}
.eab-form-actions {
    display: flex;
    justify-content: space-between;
}
.eab-tab-content .eab-btn {
    width: 180px;
}
button.eab-btn-secondary:hover,button.eab-btn-outline:hover,button.eab-modal-close:hover {
    background: #9ca3af;
    border-color: #9ca3af;
}
button.eab-modal-close {
    background: #fff;
    border-radius: 100px;
    padding: 0;
    color: #F1614B;
    font-size: 16px;

}
.eab-btn-success {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.eab-btn-success:hover {
    background-color: #059669;
    border-color: #059669;
}

.eab-form-actions {
    /* display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb; */
}

/* Agenda Builder Layout */
.eab-agenda-builder {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.eab-agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f8fafc;
}

.eab-header-left h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    text-transform: none;
}

.eab-event-info {
    display: flex;
    flex-direction: column;
}

.eab-event-info span {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.eab-event-details {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
}

.eab-agenda-content {
    display: flex;
    min-height: 600px;
}

/* Timeline Panel */
.eab-timeline-panel {
    flex: 1;
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    background-color: #fafbfc;
}

.eab-timeline-header {
    margin-bottom: 24px;
}

.eab-timeline-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    text-transform: none;
}

.eab-timeline-container {
    position: relative;
    min-height: 500px;
}

.eab-timeline {
    position: relative;
    padding-left: 40px;
}

.eab-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d1d5db;
}

.eab-time-slot {
    position: relative;
    height: 60px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.eab-time-label {
    position: absolute;
    left: 0;
    width: 70px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    z-index: 10;
    background-color: #fafbfc;
    padding: 4px 0;
}

.eab-time-slot::before {
    content: '';
    position: absolute;
    left: 64px;
    width: 12px;
    height: 2px;
    background-color: #d1d5db;
}

.eab-time-slot-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
    width: 100%;
    margin-left: 80px;
}

.eab-add-session-hint {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    padding: 10px;
    border: 2px dashed #F1614B;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: #f8fafc;
}

.eab-time-slot:hover .eab-add-session-hint {
    display: flex;
}

.eab-plus-icon {
    width: 40px;
    height: 40px;
    background-color: #F1614B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff !important;
}

.eab-hint-text {
    font-size: 12px;
    color: #6b7280 !important;
    font-weight: 500;
}

.eab-session-block {
    position: absolute;
    left: 130px;
    right: 15px;
    background-color: #F1614B;
    color: white;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: move;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 20;
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: anchor-center;
    gap: 12px;
    margin-bottom: 8px;
}

.eab-session-block:hover {
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.eab-session-left {
    /* flex: 0 0 auto; */
    width: 22%;
    border-right: 1px solid;
    border-color: rgb(255, 255, 255, 0.2);
}

.eab-session-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0px;
    display: inline-block;
    line-height: 14px;
}

.eab-session-time {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1px;
}

.eab-session-speakers {
    font-size: 11px;
    opacity: 0.9;
    font-style: italic;
}

.eab-session-speaker-avatars {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.eab-session-speaker-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.eab-session-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Management Panel */
.eab-management-panel {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
}

.eab-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.eab-tab-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.eab-tab-btn.active {
    color: #F1614B;
    border-bottom-color: #F1614B;
    background-color: #f8fafc;
}

.eab-tab-btn:hover {
    color: #374151;
    background-color: #f9fafb;
}

.eab-tab-content {
    display: none;
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.eab-tab-content.active {
    display: block;
}

.eab-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.eab-tab-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    text-transform: none;
}

/* Sessions List */
.eab-sessions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eab-session-item {
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.eab-session-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.eab-session-info p {
    margin: 12px 0 !important;
    font-size: 14px;
    color: #6b7280;
    text-align: left !important;
    line-height: 1.5;
}

.eab-session-actions {
    display: flex;
    gap: 8px;
}

.eab-icon-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eab-icon-btn:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Speakers List */
.eab-speakers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eab-speaker-item {
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eab-speaker-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
    overflow: hidden;
}

.eab-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eab-speaker-info {
    flex: 1;
}

.eab-speaker-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.eab-speaker-info p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    text-align: left !important;
    line-height: 1;
}

/* Modals */
.eab-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.eab-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.eab-modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eab-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #374151;
}

.eab-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.eab-modal-close:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.eab-modal form {
    padding: 24px;
}

.eab-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}
#step-3 .eab-form-container h4 {
    margin: 0;
}
#agenda-preview {
    text-align: center;
}
/* Empty States */
.eab-empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
}

.eab-empty-state h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.eab-empty-state p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Drag and Drop Styles */
.eab-speaker-item {
    cursor: move;
    transition: all 0.2s ease;
}

.eab-speaker-item:hover {
    background-color: #f8fafc;
    border-color: #F1614B;
}

.eab-dragging-speaker {
    opacity: 0.8;
    transform: rotate(2deg);
    border: 2px solid #F1614B;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.eab-session-drop-hover {
    border: 2px dashed #10b981 !important;
    background-color: rgba(16, 185, 129, 0.1) !important;
    transform: scale(1.02);
}

.eab-speaker-assigned {
    animation: speakerAssigned 1s ease-in-out;
}

@keyframes speakerAssigned {
    0% { 
        transform: scale(1); 
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
        border-color: #10b981;
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Preview Container */
.eab-preview-container {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 32px;
}

.eab-preview-header h3 {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.eab-preview-header p {
    margin: 4px 0;
    color: #6b7280;
    font-size: 14px;
}

/* Preview Agenda Styles - Mockup Design */
.eab-preview-container {
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.eab-preview-header {
    background: #fff5f5;
    color: #000;
    padding: 30px 40px;
    text-align: center;
    position: relative;
}

.eab-preview-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.eab-preview-company {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.eab-preview-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.eab-preview-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.eab-preview-day {
    font-size: 14px;
    font-weight: 700;
    color: #F1614B;
    letter-spacing: 1px;
}

.eab-preview-date {
    font-size: 14px;
    font-weight: 600;
    color: #F1614B;
}

.eab-preview-sessions {
    padding: 0;
}

.eab-preview-session-item {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.eab-preview-session-item:hover {
    /* background-color: #f8f9fa; */
}

.eab-preview-session-item:last-child {
    border-bottom: none;
}

.eab-preview-time-column {
    width: 100px;
    padding: 25px 20px;
    background: #fff5f5;
    border-right: 1px solid #e9ecef;
    text-align: center;
    flex-shrink: 0;
}

.eab-preview-time {
    font-size: 14px;
    font-weight: 700;
    color: #F1614B;
    line-height: 1.2;
}

.eab-preview-content-column {
    flex: 1;
    padding: 25px 30px;
}

.eab-preview-session-title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-align: left;
    text-transform: none;
}

.eab-preview-session-description {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 8px;
}

.eab-preview-session-speakers {
    font-size: 14px;
    color: #495057;
    font-style: italic;
    text-align: left;
}

.eab-preview-footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.eab-preview-website {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.eab-preview-session-speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.eab-session-description {
    text-align: left;
    line-height: 1.2;
    font-size: 13px;
    width: 74%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* Session resizable handles */
.eab-session-block .ui-resizable-handle {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 20px;
    height: 1px;    
    border-radius: 0;
    position: absolute;
    left: 50%;
}

.eab-session-block .ui-resizable-n {
    top: 0;
    cursor: n-resize;
}

.eab-session-block .ui-resizable-s {
    bottom: 0;
    cursor: s-resize;
}

.eab-session-block:hover .ui-resizable-handle {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.4);
}

.eab-session-block {
    cursor: pointer;
}

/* Session speaker avatars in timeline */
.eab-session-speakers-avatars {
    display: flex;
    gap: 4px;
    margin: 4px 0;
    flex-wrap: wrap;
}

.eab-session-speaker-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: white !important;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.eab-session-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.eab-session-speaker-avatar span {
    font-size: 10px;
    font-weight: 600;
}

/* Show speaker info with avatar and name */
.eab-session-speakers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.eab-session-speaker-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.eab-session-speaker-info .eab-session-speaker-avatar {
    width: 16px;
    height: 16px;
    font-size: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.eab-session-speaker-name {
    font-weight: 500;
    white-space: nowrap;
    color: #fff !important;
}

.eab-session-speakers-count {
    font-weight: 500;
    opacity: 0.8;
    color: #fff !important;
}

/* Preview speakers redesign */
.eab-preview-session-speakers {
    margin-top: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #F1614B;
    align-items: center;
}

.eab-preview-speakers-label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eab-preview-speakers-grid {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.eab-preview-speaker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.eab-preview-speaker-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* background-color: #F1614B; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.eab-preview-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eab-preview-speaker-initial {
    font-size: 12px;
    font-weight: 600;
}

.eab-preview-speaker-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.eab-preview-speaker-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937 !important;
    line-height: 1.2;
    margin: 0;
}

.eab-preview-speaker-title {
    font-size: 12px;
    color: #6b7280 !important;
    line-height: 1.3;
    margin: 2px 0 0 0;
    font-style: italic;
}

.eab-preview-sessions .eab-preview-content-column p.eab-preview-session-description {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    text-align: left;
    margin: 0;
}

/* Loading State */
.eab-loading {
    opacity: 0.6;
    pointer-events: none;
}

.eab-btn.eab-loading {
    position: relative;
}

.eab-btn.eab-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* HubSpot Popup Styles */
.popup-info {
    color: rgb(107 114 128) !important;
    font-size: 12px !important;
    text-align: center;
    margin: 10px 0 0 0;
}

.main-form {
    width: 100%;
}

.main-form form {
    position: relative;
}

.hs_submit.hs-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 3px;
    top: 3px;
}

.main-form form input[type=submit] {
    border-radius: 48px;
    background: var(--Gradient-Gradient-1, linear-gradient(103deg, #f1614b .91%, #f1416b 100%));
    padding: 10px 40px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: inherit !important;
    border: inherit;
}

.main-form form input[type=email] {
    display: flex;
    padding: 10px 12px 11px 24px;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--Neutrals-Gray-200, #c2d0dc);
    background: var(--Neutrals-White, #fff);
    min-height: 54px;
}

label#label-email-33831afb-6355-4dee-accd-6bde2203d296 {
    display: none;
}

#eab-hubspot-popup .hs-form {
    max-width: 100%;
}

#eab-hubspot-popup .hs-form-field {
    margin-bottom: 15px;
}

#eab-popup-close:hover {
    color: #F1614B;
}

/* Responsive */
@media (max-width: 768px) {

    #eab-hubspot-popup > div {
        padding: 20px;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .eab-form-container p.eab-subtitle {
        text-align: center;
        font-size: 15px;
    }
    .eab-label,.eab-error-message {
        text-align: left;
    }
    .eab-container {
        padding: 0;
    }

    .eab-form-container {
        padding: 24px;
    }

    .eab-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .eab-progress-bar {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .eab-step-label {
        font-size: 12px;
    }

    .eab-form-actions {
        flex-direction: row;
        align-items: center;
    }

    .eab-btn {
        width: 100%;
    }

    .eab-agenda-content {
        flex-direction: column-reverse;
    }
    .eab-empty-state p {
        font-size: 14px !important;
    }

    .eab-timeline-panel {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .eab-preview-time-column {
        width: 30px;
        padding: 10px;
    }
    .eab-preview-content-column,.eab-preview-date-header {
        padding: 10px;
    }
    .eab-preview-session-speakers {
        margin-top: 6px;
        gap: 0px;
    }
    .eab-management-panel {
        flex: none;
    }

    .eab-agenda-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .eab-timeline {
        padding-left: 2px;
    }
    .eab-timeline::before {
        left: 0;
    }
    button.eab-btn-outline, button.eab-btn-secondary,button.eab-btn-primary {
        font-size: 14px;
        padding: 8px;
        margin: 0 auto;
    }
    .eab-modal form {
        padding: 10px;
    }
    .eab-modal-header {
        padding: 10px 10px 0;
    }
    .eab-tab-content .eab-btn {
        width: 130px;
        margin-right: 0;
    }
    .eab-speaker-item {
        padding: 6px;
    }
    .eab-speaker-info,.eab-session-info {
        text-align: left;
    }
    .eab-speaker-info h4,.eab-session-info h4 {
        font-size: 16px !important;
    }
    .eab-speaker-info p,.eab-session-info p {
        font-size: 14px !important;
        margin: 0 !important;
    }
    .eab-session-info p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .eab-form-actions .eab-btn {
        width: 165px;
        margin: 20px 8px;
    }
    .eab-session-time {
        display: none;
    }
    .eab-time-slot::before {
        left: 40px;
    }
    .eab-time-label {
        width: 40px;
        line-height: 12px;
    }
    .eab-time-slot-content {
        margin-left: 50px;
    }
    .eab-session-block {
        left: 60px !important;
    }
    .eab-tab-btn {
        padding: 10px 24px;
    }
    .eab-session-left {
        width: 45%;
    }
    .eab-session-speakers {
        margin-top: 0px;
        line-height: 11px;
    }
}

@media (max-width: 480px) {
    .eab-session-block .ui-resizable-handle {
        display: none !important;
    }
    .eab-progress-bar::before {
        left: 15%;
        right: 15%;
    }

    .eab-step {
        max-width: 120px;
    }

    .eab-step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .eab-modal-content {
        width: 95%;
        margin: 20px;
    }
}