#eqres-wrap {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
}
.eqres-subtitle {
    color: #555;
    margin-bottom: 1.2rem;
}
.eqres-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.eqres-legend {
    display: flex;
    gap: 18px;
    margin-bottom: 1rem;
}
.eqres-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}
.eqres-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}
.eqres-dot-avail { background: #7EA68B; }
.eqres-dot-full  { background: #e0e0e0; border: 1px solid #ccc; }

.eqres-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 1.5rem;
}
.eqres-slot {
    padding: 12px 10px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 0.1s, background 0.15s;
    user-select: none;
}
.eqres-slot-available {
    background: #7EA68B;
    border-color: #5d8a6e;
    color: #fff;
    cursor: pointer;
}
.eqres-slot-available:hover {
    background: #6a9478;
}
.eqres-slot-available.eqres-selected {
    background: #4a7059;
    border: 2px solid #3a5a47;
    transform: scale(0.98);
}
.eqres-slot-full {
    background: #f0f0f0;
    border-color: #ddd;
    color: #aaa;
    cursor: not-allowed;
}
.eqres-slot-time {
    font-size: 14px;
    font-weight: 600;
}
.eqres-slot-places {
    font-size: 12px;
    margin-top: 3px;
    opacity: 0.9;
}

.eqres-selected-info {
    font-size: 13px;
    color: #4a7059;
    background: #e8f2ec;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 1rem;
}

.eqres-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.eqres-form-group {
    margin-bottom: 14px;
}
.eqres-form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
    font-weight: 500;
}
.eqres-form-group input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.eqres-form-group input:focus {
    outline: none;
    border-color: #7EA68B;
    box-shadow: 0 0 0 2px rgba(126,166,139,0.2);
}

.eqres-btn-submit {
    width: 100%;
    padding: 12px;
    background: #7EA68B;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.15s;
}
.eqres-btn-submit:hover:not(:disabled) {
    background: #5d8a6e;
}
.eqres-btn-submit:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
}

.eqres-notice {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    text-align: center;
}
.eqres-required {
    color: #c0392b;
    margin-left: 2px;
}
.eqres-consent-group {
    margin-top: 8px;
    margin-bottom: 4px;
}
.eqres-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
    font-weight: normal;
}
.eqres-consent-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #4a7059;
    cursor: pointer;
}
.eqres-error {
    background: #fdecea;
    color: #c0392b;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 14px;
}
.eqres-success {
    background: #e8f2ec;
    color: #2d6a4f;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .eqres-form-row {
        grid-template-columns: 1fr;
    }
}
