
.lumena-form-wrapper, .lumena-logs-wrapper, .lumena-report-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #F1C5A9;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    font-family: "Lato", sans-serif;
}
.progress-bar {
    width: 100%;
    background-color: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.progress-fill {
    height: 100%;
    background-color: #BE976B;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.step-content {
    display: none;
}
.step-content.active {
    display: block;
}
.error-message {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}
.spinner-wrapper {
    display: none;
    text-align: center;
    margin: 20px 0;
}
.spinner {
    border: 4px solid #F1C5A9;
    border-top: 4px solid #BE976B;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: inline-block;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.toggle-btn {
    background-color: #fff;
    color: #4D473E;
    border: 1px solid #BE976B;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle-btn.selected {
    background-color: #BE976B;
    color: #fff;
}
.food-autocomplete {
    position: relative;
}
.autocomplete-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #BE976B;
    border-radius: 6px;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}
.autocomplete-items div {
    padding: 8px;
    cursor: pointer;
}
.autocomplete-items div:hover {
    background-color: #F1C5A9;
}
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.confirmation-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}
.lumena-logs-wrapper .log-entry {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #BE976B;
}
.lumena-logs-wrapper .insights {
    background-color: #F1C5A9;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-style: italic;
    color: #4D473E;
    font-size: 16px;
}
.chart-wrapper {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #BE976B;
    border-radius: 6px;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #E5D9B6;
    border: 1px solid #BE976B;
    border-radius: 4px;
}
input[type="range"]::-webkit-slider-runnable-track {
    background: #E5D9B6;
    height: 8px;
    border: 1px solid #BE976B;
    border-radius: 4px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #4D473E;
    border-radius: 50%;
    margin-top: -6px;
    cursor: pointer;
}
input[type="range"]::-moz-range-track {
    background: #E5D9B6;
    height: 8px;
    border: 1px solid #BE976B;
    border-radius: 4px;
}
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4D473E;
    border-radius: 50%;
    cursor: pointer;
}
input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:hover::-moz-range-thumb {
    background: #BE976B;
}
@media (max-width: 600px) {
    .lumena-form-wrapper, .lumena-logs-wrapper, .lumena-report-wrapper {
        max-width: 100%;
        padding: 1rem;
    }
    .food-row {
        flex-direction: column;
    }
    .food-row .food-autocomplete {
        margin-bottom: 0.5rem;
    }
    .chart-wrapper canvas {
        max-width: 100%;
    }
}



.lumena-dashboard-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #F1C5A9;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    font-family: "Lato", sans-serif;
}
.dashboard-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
    .lumena-dashboard-wrapper {
        max-width: 100%;
        padding: 1rem;
    }
}