     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
            line-height: 1.6;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .form-header {
            padding: 30px;
            border-bottom: 1px solid #e5e5e5;
        }

        .form-title {
            font-size: 2rem;
            color: #166534;
            margin-bottom: 8px;
        }

        .form-description {
            color: #6b7280;
            font-size: 0.95rem;
        }

        .form-content {
            padding: 30px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.25rem;
            color: #16a34a;
            margin-bottom: 8px;
        }

        .separator {
            height: 1px;
            background-color: #e5e5e5;
            margin-bottom: 24px;
        }

        .field-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #374151;
        }

        .required {
            color: #ef4444;
        }

        input[type="text"],
        input[type="date"],
        select,
        textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        input.error,
        select.error,
        textarea.error {
            border-color: #ef4444;
        }

        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: 4px;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox-group {
            border: 1px solid #d1d5db;
            border-radius: 6px;
            padding: 16px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .checkbox-item:last-child {
            margin-bottom: 0;
        }

        .checkbox-item input[type="checkbox"] {
            width: auto;
            margin-right: 8px;
            cursor: pointer;
        }

        .checkbox-item label {
            margin-bottom: 0;
            cursor: pointer;
            font-weight: normal;
        }

        .button-group {
            display: flex;
            gap: 12px;
            padding-top: 20px;
        }

        button {
            flex: 1;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-submit {
            background-color: #2563eb;
            color: white;
        }

        .btn-submit:hover {
            background-color: #1d4ed8;
        }

        .btn-clear {
            background-color: white;
            color: #374151;
            border: 1px solid #d1d5db;
        }

        .btn-clear:hover {
            background-color: #f9fafb;
        }
		.btn-email {
		background-color: #28a745;   /* green */
		color: white;
		padding: 10px 18px;
		border: none;
		border-radius: 6px;
		font-size: 16px;
		cursor: pointer;
		transition: background-color 0.2s ease, transform 0.1s ease;
		}

/* Hover effect */
.btn-email:hover {
    background-color: #218838;   /* slightly darker green */
    transform: translateY(-1px);
}

/* Pressed effect */
.btn-email:active {
    background-color: #1e7e34;
    transform: translateY(0);
}


        .file-input-wrapper {
            position: relative;
        }

        input[type="file"] {
            padding: 8px;
        }

        .file-display {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 6px;
            padding: 10px;
            margin-top: 8px;
        }

        .file-display .file-name {
            flex: 1;
            font-size: 0.875rem;
        }

        .file-display .remove-file {
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
            padding: 4px;
            font-size: 1.2rem;
            line-height: 1;
        }

        .file-display .remove-file:hover {
            color: #374151;
        }

        .success-message {
            background-color: #f0fdf4;
            border: 1px solid #bbf7d0;
            border-radius: 8px;
            padding: 24px;
            color: #15803d;
            text-align: center;
        }

        .success-message-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .hidden {
            display: none;
        }

        .calendar-icon,
        .upload-icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            vertical-align: middle;
            margin-right: 4px;
        }

        @media (max-width: 640px) {
            .button-group {
                flex-direction: column;
            }

            .form-title {
                font-size: 1.5rem;
            }
        }
/*Admin Styles*/

        .admin-header { margin-bottom: 1rem; }
        .admin-header h1 { margin: 0; }
        .admin-header p { margin: 0.25rem 0 0; color: #555; }

        .admin-actions {
            margin: 0.75rem 0 1rem;
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .admin-table-wrapper { overflow-x: auto; }

        table.admin-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table.admin-table th,
        table.admin-table td {
            border-bottom: 1px solid #ddd;
            padding: 0.5rem 0.75rem;
            text-align: left;
            vertical-align: top;
        }
        table.admin-table th {
            background: #f5f5f5;
            font-weight: 600;
        }
        table.admin-table tr:hover { background: #fafafa; }

        .admin-small-text { font-size: 0.75rem; color: #777; }

        .admin-tag-reviewed {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            background: #e6f6e6;
            color: #228B22;
        }
        .admin-tag-not-reviewed {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            background: #ffecec;
            color: #b22222;
        }

        .btn-small { font-size: 0.75rem; padding: 4px 8px; margin: 0 2px; }

        .btn-admin-review {
            background-color: #2e8b57;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
        }
        .btn-admin-review:hover { background-color: #276e49; }
    .search-box {
            padding: 6px 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 0.85rem;
        }
        .search-box:focus {
            outline: none;
            border-color: #2e8b57;
        }
		/*Change list style*/
		        .header { margin-bottom: 1rem; }
        .header h1 { margin: 0; }
        .header p { margin: 0.25rem 0 0; color: #555; }

        .actions {
            margin: 0.75rem 0 1rem;
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .table-wrapper { overflow-x: auto; }

        table.clean-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table.clean-table th,
        table.clean-table td {
            border-bottom: 1px solid #ddd;
            padding: 0.5rem 0.75rem;
            text-align: left;
            vertical-align: top;
        }
        table.clean-table th {
            background: #f5f5f5;
            font-weight: 600;
        }
        table.clean-table tr:hover { background: #fafafa; }

        .small-text { font-size: 0.75rem; color: #777; }

        .tag-reviewed {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            background: #e6f6e6;
            color: #228B22;
        }
        .tag-not-reviewed {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            background: #ffecec;
            color: #b22222;
        }

        .btn-small { font-size: 0.75rem; padding: 4px 8px; margin: 0 2px; }
/* ---- REVIEW STATUS TAGS (Border Only) ---- */
.tag-Reviewed,
.tag-not-Reviewed {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: transparent;
}

/* Green outline */
.tag-Reviewed {
    color: #2ecc71;
    border: 2px solid #2ecc71;
}

/* Soft coral red (lighter than medium red) */
.tag-not-Reviewed {
    color: #e57373;
    border: 2px solid #e57373;
}
/* ========= Modal Overlay ========= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ========= Modal Box ========= */
.modal-box {
    background: #ffffff;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

/* Buttons */
.btn-cancel {
    padding: 6px 12px;
    background: #dcdcdc;
    border-radius: 6px;
}

.btn-submit {
    padding: 6px 12px;
    background: #228B22;
    color: white;
    border-radius: 6px;
}

.bcc-row {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap; /* prevents breaking if screen is very small */
    margin-bottom: 1rem;
}

.bcc-row label {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* prevents label wrapping weirdly */
}

