body {
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 10px;
    background-color: #f8f9fa; /* Light background from fels.church */
    color: #212529; /* Dark text color */
    max-width: 600px;
    margin: auto;
}

h1, h2, h3 {
    color: #0056b3; /* Restore original blue color */
    font-weight: bold;
}

h2 {
    border-bottom: none; /* Remove border */
    padding-bottom: 0;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
}

.options button {
    font-size: 2rem; /* Keep emojis large */
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 50%; /* Circular buttons */
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.options button:hover {
    transform: scale(1.1);
}

.options button:focus {
    outline: none;
}

.options button.selected {
    border-color: #0056b3; /* Blue border for selected */
    background-color: #e9ecef; /* Light gray background */
}

.options button:not(.selected) {
    opacity: 0.7;
}

.options button[data-value="😢"] {
    background-color: #dc3545; /* Red */
    color: white;
}

.options button[data-value="😟"] {
    background-color: #fd7e14; /* Orange */
    color: white;
}

.options button[data-value="😐"] {
    background-color: #6c757d; /* Gray */
    color: white;
}

.options button[data-value="🙂"] {
    background-color: #28a745; /* Green */
    color: white;
}

.options button[data-value="😄"] {
    background-color: #007bff; /* Blue */
    color: white;
}

.reflection textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    height: 60px;
}

.download-button, .btn-danger {
    background-color: #0056b3; /* Blue */
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 48%; /* Make buttons equal width */
    text-align: center;
}

.btn-danger {
    background-color: #dc3545; /* Red */
}

.download-button:hover {
    background-color: #004085; /* Darker blue */
}

.btn-danger:hover {
    background-color: #c82333; /* Darker red */
}

.button-container {
    display: flex;
    justify-content: space-between;
    gap: 4%;
    margin-top: 20px;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.card-header {
    background-color: #007bff; /* Blue */
    color: white; /* White text for better visibility */
    cursor: pointer; /* Indicate the block is clickable */
    padding: 15px;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.card-header:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.card-header button {
    all: unset; /* Remove default button styles */
    display: block;
    width: 100%; /* Make the entire block clickable */
    text-align: left;
}

.navbar {
    background-color: #343a40;
}

.navbar-brand, .navbar-nav .nav-link {
    color: white;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #ffc107;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 1rem 0;
    text-align: center;
}