body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
}

#attorney-list .list-group-item {
    border-bottom: 1px solid #6c757d;
    padding: 8px 12px;
    line-height: 1.3;
}


#attorney-list .list-group-item:last-child {
    border-bottom: none;
}

/*********************/
/* Dropzone Styles */
.drop-area {
    position: relative; /* Меняем fixed на relative */
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    display: block;
    align-items: normal;
    padding-top: 0;
    justify-content: normal;
    z-index: auto;
}

.drop-zone {
    width: 450px;
    height: 350px;
    border: 3px dashed #dee2e6;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    margin: 0 auto; /* Центрируем */
}

.drop-zone:hover {
    border-color: #007bff;
    transform: scale(1.02); /* Расширение на 2% во все стороны */
    box-shadow: 0 20px 45px rgba(0, 123, 255, 0.15);
}

/*.drop-zone.drag-over {*/
/*    border-color: #007bff;*/
/*    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);*/
/*    transform: scale(1.05);*/
/*    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.2);*/
/*}*/

.drop-content {
    text-align: center;
    padding: 40px;
}

.drop-content i {
    color: #6c757d;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.drop-zone:hover .drop-content i {
    color: #007bff;
}

.drop-content h4 {
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4rem;
}

.drop-content p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.supported-formats {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.drop-zone:hover .supported-formats {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.supported-formats small {
    color: #495057;
    line-height: 1.6;
}

.drop-zone.processing {
    border-color: #ffc107;
    animation: pulse 2s infinite;
}

#dropArea.processing {
    background: rgba(255, 193, 7, 0.05);
}

/* Processing states */
/*.drop-zone.processing {*/
/*    border-color: #ffc107;*/
/*    animation: pulse 2s infinite;*/
/*}*/

/*.drop-area.processing {*/
/*    background: rgba(255, 193, 7, 0.05);*/
/*}*/

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes float {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


/*.drop-area-fullscreen .drop-content-fullscreen {*/
/*    animation: pulse 2s infinite;*/
/*}*/


/* File info during processing */
/*******************************/
.file-info {
    padding: 30px;
}

.file-info h5 {
    color: #495057;
    margin-bottom: 15px;
}

.file-info p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .drop-zone {
        width: 90vw;
        height: 300px;
        margin: 20px;
    }

    .drop-content {
        padding: 30px 20px;
    }

    .drop-content h4 {
        font-size: 1.2rem;
    }
}

/* Стили для вертикальных кнопок оплаты */
.btn-group-vertical .btn {
    margin-bottom: 5px;
    border-radius: 6px !important;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.3;
}

.btn-group-vertical .btn:last-child {
    margin-bottom: 0;
}

.btn-group-vertical .btn small {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Центрирование поля email */
#topupEmail.text-center::placeholder {
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .btn-group-vertical .btn {
        padding: 6px 10px;
    }

    #topupStrip .mx-auto {
        max-width: 80% !important;
    }
}