/* Custom Styles */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: #f9fafb;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    outline: none;
    transition: all 0.2s;
    font-weight: 500;
}

.form-input:focus {
    border-color: #16a34a;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.05);
}

.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #f9fafb;
    border: 2px solid #f3f4f6;
    border-radius: 1.25rem;
    outline: none;
    transition: all 0.2s;
    min-height: 120px;
    resize: none;
    font-weight: 500;
}

.form-textarea:focus {
    border-color: #16a34a;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.05);
}

.checkbox-role-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f9fafb;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-role-item:hover {
    background-color: #f3f4f6;
    border-color: #e5e7eb;
}

.checkbox-role-item input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 1rem;
    accent-color: #16a34a;
}

.checkbox-role-item span {
    font-weight: 700;
    font-size: 0.9375rem;
}

#auth-modal {
    pointer-events: none;
}

#auth-modal.flex {
    pointer-events: auto;
}

.admin-radio-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 1rem;
    cursor: pointer;
    border: 2px solid #f3f4f6;
    background-color: white;
    transition: all 0.2s;
    pointer-events: auto;
}

.admin-radio-label:hover {
    border-color: #e5e7eb;
}

.admin-radio-label.selected[data-status="OPEN"] { background-color: #f0fdf4; border-color: #4ade80; }
.admin-radio-label.selected[data-status="CLOSED"] { background-color: #fef2f2; border-color: #f87171; }
.admin-radio-label.selected[data-status="CLOSING_SOON"] { background-color: #fffbeb; border-color: #fbbf24; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}