/* File: assets/css/public.css */

/* --- General Frontend Styles --- */
.thts-frontend-form-wrapper,
.thts-tutor-inbox-wrapper {
    max-width: 700px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border: 1px solid #e2e4e7;
    padding: 20px 30px 30px;
    background: #fff;
    border-radius: 4px;
}

.thts-frontend-form-wrapper h2,
.thts-tutor-inbox-wrapper h2 {
    margin-top: 0;
    border-bottom: 1px solid #e2e4e7;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.thts-form-field {
    margin-bottom: 20px;
}
.thts-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.thts-form-field input[type="text"],
.thts-form-field input[type="number"],
.thts-form-field select,
.thts-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.thts-button {
    background-color: #005A9C;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}
.thts-button:hover {
    background-color: #004a80;
    color: #fff;
}
.thts-button-secondary {
    background-color: #6c757d;
}
.thts-button-secondary:hover {
    background-color: #5a6268;
}

.thts-notice {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.thts-notice-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* --- Tutor Inbox Specific Styles --- */
.thts-offer-card {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-left-width: 4px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}
.thts-offer-card.status-pending { border-left-color: #F5A623; }
.thts-offer-card.status-accepted { border-left-color: #227126; }
.thts-offer-card.status-rejected,
.thts-offer-card.status-expired,
.thts-offer-card.status-closed { border-left-color: #D63638; }

.thts-offer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e2e4e7;
}
.thts-offer-card-header h3 {
    margin: 0;
    font-size: 1.2em;
}
.thts-offer-card-body {
    padding: 15px;
}
.thts-offer-card-body ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}
.thts-offer-card-footer {
    background: #f6f7f7;
    padding: 15px;
    border-top: 1px solid #e2e4e7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.thts-countdown {
    font-size: 0.9em;
    color: #555;
    font-weight: 600;
}
.thts-actions {
    display: flex;
    gap: 10px;
}
