/* ============================================
   Estimate New Quotes Page Styles
   ============================================ */

.estimate-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* ============================================
   Estimate Form Section
   ============================================ */

.estimate-form-section {
    background: var(--color-surface);
    border-radius: 0;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1e40af;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

/* ============================================
   Form Styles
   ============================================ */

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-width: 8.4rem; /* 50% of 16.8rem */
    flex: 0 0 auto; /* Don't grow, don't shrink, auto basis */
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

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

.form-select {
    white-space: normal;
    word-wrap: break-word;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.form-select {
    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='%231e293b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-textarea {
    resize: vertical;
    min-height: 4rem;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 0 0 auto; /* Don't grow, don't shrink, auto basis */
    min-width: 6rem; /* 50% of 12rem */
    max-width: 8.4rem; /* 50% of 16.8rem */
}

/* Product Category - wider field */
.form-row .form-group-wide {
    min-width: 12rem; /* Wider for product category */
    max-width: 16.8rem; /* Wider for product category */
}

/* ============================================
   Action Buttons
   ============================================ */

.form-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.btn {
    padding: 0.5rem 1.25rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-surface);
    box-shadow: 8px 8px 16px rgba(123, 44, 191, 0.3), -8px -8px 16px rgba(255, 255, 255, 0.9);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-pressed);
    transform: translateY(-2px);
}

.btn-primary:active {
    box-shadow: var(--shadow-inset);
    transform: translateY(0);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-pressed);
}

.btn-secondary:active {
    box-shadow: var(--shadow-inset);
}

/* ============================================
   Results Section
   ============================================ */

.results-section {
    background: var(--color-surface);
    border-radius: 0;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
    display: none;
}

.results-section.show {
    display: block;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.result-card {
    padding: var(--spacing-md);
    border-radius: 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-secondary) 5%, var(--color-surface) 10%);
    box-shadow: var(--shadow-soft);
}

.result-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
}

.result-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary);
}

/* ============================================
   Save Controls Section
   ============================================ */

.save-controls-section {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
}

.save-controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.save-controls-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.quote-name-input-group {
    display: flex;
    align-items: center;
}

.quote-name-input {
    padding: 0.375rem 0.5rem;
    border: 2px solid #374151;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
    min-width: 150px;
    max-width: 250px;
    height: 2.25rem;
    box-sizing: border-box;
}

.quote-name-input:hover {
    border-color: #4b5563;
}

.quote-name-input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.quote-name-input:invalid {
    border-color: #ef4444;
}

.quote-name-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.quote-date-widget {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.375rem 0 0.5rem;
    background: #ffffff;
    border: 2px solid #374151;
    border-radius: 4px;
    height: 2.25rem;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.quote-date-widget:hover {
    border-color: #4b5563;
}

.quote-date-widget:focus-within {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.quote-date-widget svg {
    flex-shrink: 0;
    color: #374151;
    width: 14px;
    height: 14px;
}

.quote-date-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    color: #1e293b;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    min-width: 100px;
    cursor: pointer;
}

.quote-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    margin-left: 0.25rem;
}

.quote-date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.save-controls-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.estimate-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.estimate-status-indicator.saving {
    background: #fef3c7;
    color: #92400e;
}

.estimate-status-indicator.saved {
    background: #d1fae5;
    color: #065f46;
}

.estimate-status-indicator.unsaved {
    background: #fee2e2;
    color: #991b1b;
}

.status-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.estimate-status-indicator.saving .status-icon {
    background: #f59e0b;
}

.estimate-status-indicator.saved .status-icon {
    background: #10b981;
    animation: none;
}

.estimate-status-indicator.unsaved .status-icon {
    background: #ef4444;
    animation: none;
}

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

.editing-indicator {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    padding: 0.25rem 0.5rem;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--color-primary);
}

.btn-ai-analysis {
    background: var(--color-primary);
    color: var(--color-surface);
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(123, 44, 191, 0.2);
    height: 2.25rem;
    box-sizing: border-box;
}

.btn-ai-analysis:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(123, 44, 191, 0.3);
    transform: translateY(-1px);
}

.btn-ai-analysis:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(123, 44, 191, 0.2);
}

.btn-ai-analysis svg {
    flex-shrink: 0;
}

.save-button-group {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.btn-save {
    background: var(--color-primary);
    color: var(--color-surface);
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(123, 44, 191, 0.2);
    height: 2.25rem;
    box-sizing: border-box;
}

.btn-save:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(123, 44, 191, 0.3);
    transform: translateY(-1px);
}

.btn-save:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(123, 44, 191, 0.2);
}

.btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-save-dropdown-toggle {
    background: var(--color-primary);
    color: var(--color-surface);
    padding: 0.375rem 0.375rem;
    font-size: 0.8125rem;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(123, 44, 191, 0.2);
    height: 2.25rem;
    box-sizing: border-box;
}

.btn-save-dropdown-toggle:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(123, 44, 191, 0.3);
}

.btn-save-dropdown-toggle:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(123, 44, 191, 0.2);
}

.save-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    background: #374151; /* Dark grey background */
    border: 1px solid #4b5563;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.save-dropdown.show {
    display: block;
}

.save-dropdown-item {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.875rem;
    color: #ffffff; /* White text on dark grey */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
}

.save-dropdown-item:hover {
    background: #4b5563; /* Lighter grey on hover */
}

.save-dropdown-item svg {
    color: #ffffff; /* White icons */
}

.save-dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.save-dropdown-item:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.save-dropdown-item svg {
    flex-shrink: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .estimate-form-section,
    .results-section {
        padding: var(--spacing-lg);
        border-radius: 0;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Mobile specific styles */
}

/* Load Estimate Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--color-surface);
    border-radius: 0;
    box-shadow: none;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--color-border);
    background: rgba(123, 44, 191, 0.05);
    border-radius: 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: color var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-text-primary);
}

.modal-body {
    padding: 0.5rem 0.75rem;
    overflow-y: auto;
    flex: 1;
    background: var(--color-surface);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.load-estimate-search {
    position: relative;
    margin-bottom: 0.5rem;
}

.load-estimate-search-input {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0;
    font-size: 0.75rem;
    font-family: inherit;
    background: var(--color-surface);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    box-sizing: border-box;
    height: 2.5rem;
}

.load-estimate-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: 0 0 0 2px rgba(123, 44, 191, 0.1);
}

.load-estimate-search-input::placeholder {
    color: var(--color-text-secondary);
    font-weight: 400;
}

.load-estimate-search .search-icon {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    pointer-events: none;
    transition: color var(--transition-fast);
    width: 14px;
    height: 14px;
}

.load-estimate-search-input:focus + .search-icon,
.load-estimate-search:has(.load-estimate-search-input:focus) .search-icon {
    color: var(--color-primary);
}

.loading-indicator {
    text-align: center;
    padding: 1rem;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
}

.error-message {
    padding: 0.75rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 0;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    border: 1px solid #fecaca;
}

.estimate-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.estimate-item {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-surface);
    position: relative;
}

.estimate-item:hover {
    border-color: var(--color-primary);
    background: rgba(123, 44, 191, 0.03);
}

.estimate-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    gap: 0.5rem;
}

.estimate-item-actions {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.estimate-item-title {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.estimate-item-status {
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.estimate-item-status.draft {
    background: #fef3c7;
    color: #92400e;
}

.estimate-item-status.final {
    background: #d1fae5;
    color: #065f46;
}

.estimate-item-status.archived {
    background: #e5e7eb;
    color: #374151;
}

.estimate-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--color-border);
}

.estimate-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.estimate-item-date {
    font-weight: 500;
}

.estimate-delete-btn {
    background: transparent;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--color-text-secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
    opacity: 0.6;
    width: 1.5rem;
    height: 1.5rem;
}

.estimate-delete-btn:hover {
    color: #dc2626;
    opacity: 1;
}

.estimate-delete-btn:active {
    opacity: 0.8;
}

.estimate-delete-btn svg {
    width: 14px;
    height: 14px;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--color-text-secondary);
}

.empty-state p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   AI Analytics Modal Styles
   ============================================ */

.analytics-modal {
    max-width: 700px;
    max-height: 85vh;
    height: 85vh;
}

.analytics-body {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    height: calc(85vh - 3rem);
    min-height: 0;
    overflow: hidden;
}

.analytics-insights {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 0;
    font-size: 0.75rem;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
    flex-shrink: 0;
}

.analytics-insights h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
}

.analytics-insights ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.analytics-insights li {
    margin: 0.375rem 0;
}

.analytics-insights strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.analytics-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.analytics-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0;
    min-height: 0;
}

.analytics-messages::-webkit-scrollbar {
    width: 8px;
}

.analytics-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.analytics-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.analytics-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.analytics-message {
    padding: 0.625rem 0.75rem;
    border-radius: 0;
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 85%;
    word-wrap: break-word;
}

.analytics-message.user {
    align-self: flex-end;
    background: var(--color-primary);
    color: var(--color-surface);
    border: 1px solid var(--color-primary);
}

.analytics-message.ai {
    align-self: flex-start;
    background: var(--color-surface);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.analytics-message-text {
    margin: 0;
}

.analytics-message-text p {
    margin: 0.25rem 0;
}

.analytics-message-text ul,
.analytics-message-text ol {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.analytics-message-text li {
    margin: 0.25rem 0;
}

.analytics-message-text strong {
    font-weight: 600;
    color: var(--color-primary);
}

.analytics-loading {
    text-align: center;
    padding: 1rem;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
}

.analytics-input-section {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
    flex-shrink: 0;
}

.analytics-question-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0;
    font-size: 0.75rem;
    font-family: inherit;
    background: var(--color-surface);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    box-sizing: border-box;
    height: 2.25rem;
}

.analytics-question-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(123, 44, 191, 0.1);
}

.analytics-question-input::placeholder {
    color: var(--color-text-secondary);
}

.btn-analytics-send {
    background: var(--color-primary);
    color: var(--color-surface);
    padding: 0.375rem 0.625rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    width: 2.25rem;
    box-sizing: border-box;
    flex-shrink: 0;
}

.btn-analytics-send:hover {
    background: var(--color-primary-dark);
}

.btn-analytics-send:active {
    transform: scale(0.95);
}

.btn-analytics-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

