/* Custom styles inspired by samsarawellness.in */
:root {
    --primary-green: #1E3932;
    --background-light: #F7F5F2;
    --text-dark: #333333;
    --border-color: #D1CFC9;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.samsara-header {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
}

.samsara-btn {
    background-color: var(--primary-green);
    transition: background-color 0.3s ease;
}
.samsara-btn:hover {
    background-color: #2a4e45;
}

.samsara-input, .samsara-select {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.samsara-input:focus, .samsara-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(30, 57, 50, 0.2);
    outline: none;
}

/* Spinner animation */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: var(--primary-green);
    animation: spin 1s ease infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styles for the generated plan output */
#planOutput h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}
#planOutput h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
}
#planOutput ul {
    list-style-type: '🌿';
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
#planOutput li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
#planOutput p {
    margin-bottom: 1rem;
}
/* The extra closing brace was removed from here */
