  .sort-container table {
            width: auto;
            margin: 0;
        }
        .article td {
            padding: 10px;
        }
        .article input[type="text"],
        .article select,
        .article textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #CCAA88;
            border-radius: 3px;
            font-family: Georgia, serif;
        }
        .article button {
            background-color: #CC8866;
            color: #2E0C1A;
            border: none;
            padding: 10px 30px;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1em;
        }
        .article button:hover {
            background-color: #FFCBA4;
        }
        
        /* Стили для кнопок */
        .play-action-btn {
            display: inline-block;
            background-color: #CC8866;
            color: #2E0C1A;
            text-decoration: none;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-family: Georgia, serif;
            transition: all 0.2s;
            margin-top: 10px;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .play-action-btn:hover {
            background-color: #FFCBA4;
            color: #2E0C1A;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .review-header strong {
            font-size: 16px;
        }
        
        .review-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        /* Стили для отображения отзыва с абзацами */
        .review-content p {
            text-indent: 1.5em;
            text-align: justify;
            margin-top: 1px;
            margin-bottom: 1px;
        }
        
        /* Стили для модального окна описания пьесы */
        .play-info-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            overflow: auto;
        }
        
        .play-info-modal-content {
            background-color: #FDF5E6;
            margin: 10% auto;
            padding: 30px 40px;
            width: 90%;
            max-width: 600px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            font-family: Georgia, serif;
            position: relative;
            border: 2px solid #CC8866;
        }
        
        .play-info-close {
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 28px;
            color: #CC8866;
            cursor: pointer;
            transition: color 0.3s;
            font-weight: bold;
        }
        
        .play-info-close:hover {
            color: #2E0C1A;
        }
        
        .play-info-title {
            text-align: center;
            font-size: 14pt;
            color: #2E0C1A;
            margin-bottom: 20px;
            border-bottom: 2px solid #CC8866;
            padding-bottom: 10px;
            font-weight: bold;
        }
        
        .play-info-field {
            margin: 15px 0;
            line-height: 1.1;
            color: #555;
        }
        
        .play-info-label {
            font-weight: bold;
            color: #2E0C1A;
            display: inline-block;
            min-width: 120px;
        }
        
        .play-info-value {
            color: #666;
        }
        
        .play-info-description {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #CCAA88;
            color: #755;
            line-height: 1.2;
            text-align: justify;
        }
        
        /* Стили для абзацев описания в модальном окне */
        .play-info-description p {
            text-indent: 1.5em;
            text-align: justify;
            margin-top: 1px;
            margin-bottom: 1px;
        }
        
        .play-info-avtor {
            color: #666;
            font-weight: bold;
            font-size: 12pt;
        }

        .play-info-info {
            color: #666;
            font-style: italic;
        }

        .play-info-title1 {
            color: #666;
            font-weight: bold;
            font-size: 20pt;
            text-decoration: none;
        }

/* ========== МОДАЛЬНОЕ ОКНО УСПЕШНОЙ ОТПРАВКИ ========== */
#successModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

#successModal .modal-content {
    background-color: #FDF5E6;
    margin: 0 auto;
    padding: 30px;
    width: 320px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: Georgia, serif;
    position: relative;
    border: 2px solid #CC8866;
}

#successModal .success-icon {
    font-size: 3em;
    color: #4CAF50;
    margin-bottom: 15px;
}

#successModal p {
    font-size: 1.1em;
    color: #2E0C1A;
    margin-bottom: 25px;
    line-height: 1.5;
}

#successModal button {
    background-color: #CC8866;
    color: #2E0C1A;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    font-family: Georgia, serif;
    transition: background-color 0.3s ease;
}

#successModal button:hover {
    background-color: #FFCBA4;
}