/**
 * WSB Dispute Styles
 */

/* Container */
.wsb-dispute-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.wsb-dispute-main h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.wsb-dispute-listing-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* Notices */
.wsb-notice {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 14px;
}

.wsb-notice-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wsb-notice-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wsb-notice-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.wsb-notice a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* Form */
.wsb-dispute-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
}

.wsb-form-row {
    margin-bottom: 20px;
}

.wsb-form-row:last-child {
    margin-bottom: 0;
}

.wsb-form-row label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.wsb-form-row label .required {
    color: #c73e3a;
}

.wsb-form-row select,
.wsb-form-row textarea,
.wsb-form-row input[type="text"],
.wsb-form-row input[type="number"],
.wsb-form-row input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    transition: border-color 0.2s ease;
}

.wsb-form-row select:focus,
.wsb-form-row textarea:focus,
.wsb-form-row input:focus {
    border-color: #c73e3a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 62, 58, 0.1);
}

.wsb-form-row input[type="file"] {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 8px 0;
}

.wsb-form-help {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Buttons */
.wsb-btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.wsb-btn:hover {
    transform: translateY(-1px);
}

.wsb-btn-primary {
    background-color: #c73e3a;
    color: #fff;
}

.wsb-btn-primary:hover {
    background-color: #a83532;
}

.wsb-btn-secondary {
    background-color: #1a1a1a;
    color: #fff;
}

.wsb-btn-secondary:hover {
    background-color: #333;
}

/* Dispute Details (respond page) */
.wsb-dispute-details {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.wsb-dispute-details p {
    margin: 0 0 8px;
    font-size: 14px;
}

.wsb-dispute-details blockquote {
    margin: 10px 0 15px;
    padding: 12px 16px;
    background: #fff;
    border-left: 4px solid #c73e3a;
    border-radius: 4px;
    font-style: italic;
    color: #555;
}

.wsb-deadline-info {
    color: #c73e3a;
    font-weight: 500;
}

/* Admin status badges */
.wsb-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wsb-status-open {
    background: #e3f2fd;
    color: #1565c0;
}

.wsb-status-pending_response {
    background: #fff3e0;
    color: #e65100;
}

.wsb-status-resolved {
    background: #e8f5e9;
    color: #2e7d32;
}

.wsb-status-dismissed {
    background: #f5f5f5;
    color: #757575;
}

.wsb-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
}

.wsb-badge-warning {
    background: #fff3cd;
    color: #856404;
}

/* Admin evidence list */
.wsb-evidence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wsb-evidence-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.wsb-evidence-list li:last-child {
    border-bottom: none;
}

.wsb-evidence-list li a {
    color: #c73e3a;
    font-weight: 500;
    text-decoration: none;
}

.wsb-evidence-list li a:hover {
    text-decoration: underline;
}

.wsb-evidence-list li small {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .wsb-dispute-main {
        padding: 20px 15px;
    }

    .wsb-dispute-form {
        padding: 20px;
    }

    .wsb-dispute-main h1 {
        font-size: 22px;
    }
}
