/* request-artist.css - /ArtistAvails/availsrequests (real form), styled to match the request-modal design */

body { margin: 0; background: var(--bg-soft); }
.rq-page { min-height: 100vh; padding: 40px 16px; display: flex; justify-content: center; }
.rq-shell { width: 100%; max-width: 760px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 34px 34px; }
.rq-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.rq-head h1 { font-size: 1.4rem; display: flex; align-items: center; gap: 10px; }
.rq-head h1 .material-icons { font-size: 24px; }
.rq-back { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-soft); border: 1px solid var(--line-2); color: var(--ink-2); font-family: inherit; font-weight: 600; font-size: 0.88rem; padding: 8px 14px; border-radius: 10px; cursor: pointer; transition: all .15s; }
.rq-back:hover { border-color: var(--orange); color: var(--orange); }
.rq-sub { color: var(--muted); font-size: 0.95rem; margin: 0 0 24px; }

.rq-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-bottom: 16px; }
.rq-h { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 16px; }
.rq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rq-grid .rq-full { grid-column: 1 / -1; }
.rq-card label:not(.rq-rep) { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.rq-opt { font-weight: 400; color: var(--muted-2); text-transform: none; letter-spacing: 0; }
.rq-card input, .rq-card select, .rq-card textarea {
    width: 100%; font-family: inherit; font-size: 0.95rem; padding: 11px 14px;
    border: 1px solid var(--line-2); border-radius: 10px; background: var(--bg); color: var(--ink); outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.rq-card input:focus, .rq-card select:focus, .rq-card textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.rq-card input.border-red, .rq-card textarea.border-red { border-color: #d63a3a; }
.rq-card textarea { resize: vertical; min-height: 84px; }
.rq-char-count { text-align: right; font-size: 0.76rem; color: var(--muted-2); margin-top: 4px; }

.rq-artist-row { display: flex; align-items: center; gap: 14px; }
.rq-artist-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #fff; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; flex: none; }
.rq-name { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; }
.rq-note { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.rq-note .material-icons { font-size: 15px; color: var(--orange); }

.rq-reps { display: flex; flex-direction: column; gap: 10px; }
.rq-rep { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; cursor: pointer; background: var(--bg); transition: border-color .15s, background .15s, box-shadow .15s; }
.rq-rep:hover { border-color: var(--orange); }
.rq-rep:has(input:checked) { border-color: var(--orange); background: var(--orange-soft); box-shadow: 0 0 0 1px var(--orange); }
.rq-rep input[type="checkbox"] { width: 18px; height: 18px; flex: none; accent-color: var(--orange); margin: 0; }
.rq-rep-info { flex: 1; min-width: 0; }
.rq-rep-name { font-weight: 700; font-size: 0.92rem; }
.rq-rep-co { font-size: 0.78rem; color: var(--muted); }
.rq-terr-badge { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--orange); background: var(--bg); border: 1px solid var(--orange); padding: 3px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; flex: none; margin-left: 8px; }
.rq-no-reps { text-align: center; color: var(--muted); padding: 10px 4px; }
.rq-no-reps a { color: var(--orange); font-weight: 700; }

.rq-reply-note { display: flex; align-items: center; gap: 9px; background: var(--orange-soft); border: 1px solid var(--orange); border-radius: 11px; padding: 11px 15px; font-size: 0.83rem; color: var(--ink-2); margin-bottom: 16px; }
.rq-reply-note .material-icons { font-size: 18px; color: var(--orange); flex: none; }

.rq-actions { display: flex; justify-content: flex-end; gap: 12px; align-items: center; margin-top: 4px; flex-wrap: wrap; }
.rq-hint { font-size: 0.8rem; color: var(--muted-2); margin-right: auto; }
.rq-btn { font-family: inherit; font-size: 0.95rem; font-weight: 700; border: none; border-radius: 11px; padding: 13px 28px; cursor: pointer; transition: background .2s, transform .15s, border-color .2s, color .2s; }
.rq-btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,102,0,0.26); }
.rq-btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.rq-btn-primary.disabled { background: var(--muted-2); box-shadow: none; cursor: not-allowed; pointer-events: none; }
.rq-btn-ghost { background: var(--bg); color: var(--muted); border: 1px solid var(--line-2); }
.rq-btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 560px) {
    .rq-shell { padding: 22px 18px 26px; }
    .rq-grid { grid-template-columns: 1fr; }
}
