.tf-breakfast-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tf-breakfast-form-container h2 {
    color: #3a66b0;
    text-align: center;
    margin-bottom: 20px;
}

.tf-funny-text {
    text-align: center;
    font-style: italic;
    margin-bottom: 25px;
    color: #666;
}

.tf-breakfast-time {
    text-align: center;
    background-color: #e9f5ff;
    border: 1px solid #bde0ff;
    color: #3a66b0;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tf-breakfast-time-icon {
    font-size: 1.2em;
    margin-right: 8px;
    vertical-align: middle;
}

.tf-breakfast-money-icon {
    font-size: 1.4em;
    margin-right: 8px;
    vertical-align: middle;
}

.tf-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tf-form-field {
    display: flex;
    flex-direction: column;
}

.tf-form-field label {
    margin-bottom: 5px;
    font-weight: bold;
}

.tf-form-field input[type="text"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tf-checkbox-group {
    margin-top: 10px;
}

.tf-checkbox-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.tf-checkbox-item label {
    margin: 6px 0 0 8px;
    font-weight: normal;
}

.tf-checkbox-error {
    color: #d32f2f;
    font-size: 0.9em;
    margin-top: 5px;
}

.tf-form-submit {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.tf-form-submit button {
    background-color: #3a66b0;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.tf-form-submit button:hover {
    background-color: #2d5093;
}

.tf-loading {
    margin-left: 15px;
    color: #666;
}

#tf-form-messages {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.tf-success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tf-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
