
/* Custom styles */
html, body {
    overflow-x: hidden;
    min-height: 100vh;
}

#app {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: visible;
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
}

main {
    padding-bottom: 2rem;
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
    display: flex;
    flex-direction: column;
}
.progress-bar {
    transition: width 0.5s ease-in-out;
}

.client-score {
    transition: all 0.3s ease;
}

.client-score:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
/* Mobile adjustments */
@media (max-width: 767px) {
    body {
        padding: 0 12px;
    }
    
    #app {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: visible;
        min-height: calc(100vh - 160px); /* Smaller adjustment for mobile */
    }
    
    main {
        padding: 0;
        min-height: calc(100vh - 160px); /* Smaller adjustment for mobile */
    }
input[type="range"] {
    -webkit-appearance: none;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #D4967D;
    border-radius: 50%;
    cursor: pointer;
}

button {
    font-size: 14px;
    padding: 8px 12px;
}
.flex.space-x-4 {
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* Animation for the burnout meter */
@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.high-burnout {
    animation: pulse 2s infinite;
}
/* Print-specific styles */
@media print {
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .print-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 !important;
    }
    
    .client-score {
        page-break-inside: avoid;
    }
    
    button, nav, footer, .no-print {
        display: none !important;
    }
    
    @page {
        size: auto;
        margin: 10mm;
    }
}
