body {
    background-color: #1b120b;
    font-family: 'Roboto', sans-serif;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

.form-input {
    width: 100%;
    background-color: #3e2e20;
    border: 1px solid #6a4113;
    color: #f3e5d8;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: #a39181;
}

.form-input:focus {
    border-color: #ffeb3c;
    box-shadow: 0 0 0 2px rgba(255, 235, 60, 0.3);
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #6a4113;
    color: #ffffff;
    font-weight: 500;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
    background-color: #8b5a20;
    transform: translateY(-2px);
}

.action-button:active {
    background-color: #5a350f;
    transform: translateY(0);
}

#results-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#results-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-card {
    background-color: #2a1d13;
    border-left: 5px solid #6a4113;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.result-card h3 {
    color: #ffeb3c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.result-card h3 svg {
    margin-right: 0.75rem;
}

.result-card.warning {
    border-left-color: #f97316; /* Orange-600 */
}

.result-card.warning h3 {
    color: #f97316;
}

.result-card.success {
    border-left-color: #22c55e; /* Green-500 */
}

.result-card.success h3 {
    color: #22c55e;
}


.prose {
    color: #d1c4b8;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #ffeb3c;
}

.prose strong {
    color: #fde047;
}

.prose blockquote {
    border-left-color: #6a4113;
    color: #d1c4b8;
}

.prayer-text {
    background-color: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 0.5rem;
    white-space: pre-wrap;
    line-height: 1.8;
    font-family: 'Roboto', serif;
    text-align: center;
    border: 1px solid #6a4113;
}
