/* =====================================================
   Стили для формы жалоб
   ===================================================== */

#ps-report-content {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    padding: 5px 0;
}

#ps-report-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

#ps-report-title .fa {
    color: #e74c3c;
    margin-right: 10px;
}

#ps-report-title small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-top: 3px;
}

#ps-report-title small .fa {
    color: #e74c3c;
    margin-right: 8px;
}

#ps-report-title-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px 12px;
    font-size: 13px;
    color: #333;
    border-radius: 4px;
    margin-bottom: 12px;
    line-height: 1.6;
}

#ps-report-title-info .fa {
    color: #ffc107;
    margin-right: 8px;
}

#ps-report-title-info u {
    color: #d9534f;
    font-weight: 600;
}

#ps-report-issues {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    margin: 2px 0;
    font-size: 14px;
    color: #555;
}

.report-item .fa {
    margin-right: 10px;
    width: 18px;
    color: #999;
}

.report-item.active .fa {
    color: #fff;
}

.report-item:hover {
    background: #f8f9fa;
}

.report-item.active {
    background: #e74c3c;
    color: #fff;
    border-bottom-color: #e74c3c;
}

.report-item.active i:last-child {
    border-color: #fff;
}

.report-item i:last-child {
    float: right;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-top: 2px;
    transition: all 0.2s;
    margin-right: 0;
}

.report-item.active i:last-child {
    background: #fff;
    border-color: #fff;
}

.report-item.active i:last-child::after {
    content: '✓';
    display: block;
    text-align: center;
    line-height: 18px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 12px;
}

#ps-report-text {
    width: 100%;
    min-height: 80px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 13px;
    margin: 8px 0 0 0;
    display: none;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
}

#ps-report-text:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

#ps-report-description {
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

#ps-report-description .fa {
    color: #f39c12;
    margin-right: 8px;
}

#ps-report-description a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

#ps-report-description a:hover {
    text-decoration: underline;
}

#ps-report-holderbuttons {
    text-align: center;
    margin: 10px 0;
}

#ps-report-send {
    background: #e74c3c;
    border: none;
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#ps-report-send .fa {
    margin-right: 8px;
}

#ps-report-send:hover {
    background: #c0392b;
    transform: scale(1.02);
}

/* Стили для результата */
.ps-result-success {
    text-align: center;
    padding: 30px;
}

.ps-result-success .fa {
    font-size: 48px;
    color: #27ae60;
    display: block;
    margin-bottom: 15px;
}

.ps-result-success h3 {
    color: #27ae60;
}

.ps-result-success p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.ps-result-error {
    text-align: center;
    padding: 20px;
    color: #d9534f;
}

.ps-result-error .fa {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.ps-result-warning {
    text-align: center;
    padding: 20px;
    background: #fff3cd;
    border-radius: 4px;
    margin: 10px 0;
}

.ps-result-warning .fa {
    font-size: 24px;
    color: #f39c12;
    display: block;
    margin-bottom: 10px;
}

.ps-result-already {
    text-align: center;
    padding: 30px;
    font-size: 16px;
    color: #d9534f;
}

.ps-result-already .fa {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}