#container-hosts {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.raid-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
}

.raid-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}


.raid-controls .theme-btn {
    flex: 1;
    width: auto;
    margin: 0;
}


.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    /* JS altera para flex */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.modal-footer-buttons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.modal-footer-buttons .theme-btn {
    flex: 1;
    padding: 8px 5px !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg) !important;
    color: var(--text-main) !important;
    border: 2px solid var(--primary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.modal-content input,
.modal-content select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.modal-content input:focus,
.modal-content select:focus {
    border-color: #2563eb;
}

.modal-content select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.modal-content .theme-btn {
    padding: 12px;
    font-size: 0.9rem;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;

    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary-elite {
    background: #2563eb !important;
    color: white !important;
}

.btn-danger-elite {
    background: #dc3545 !important;
    color: white !important;
}

.btn-entrar {
    background: #2563eb;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
}

.btn-success-elite {
    background: #22c55e !important;
    color: white !important;
    border: none !important;
}

.btn-outline-success {
    border: 1px solid #22c55e !important;
    color: #22c55e !important;
    background: transparent !important;
}

.raid-card {
    background: #111827 !important;
    border: 1px solid #2563eb !important;
    border-radius: 10px !important;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.raid-card h6 {
    color: #facc15 !important;
    margin: 0;
    text-transform: uppercase;
}

.raid-info h6 {
    color: #facc15 !important;
    margin: 0;
    font-weight: 900;
}

.raid-details {
    font-size: 0.75rem;
    color: #94a3b8;
}

.raid-status-bar {
    width: 100px;
    text-align: center;
}

.progress-mini {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: #22c55e;
    /* Verde */
}

.row-inputs {
    display: flex;
    gap: 10px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alert-instructions {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid #2563eb;
    padding: 12px;
    border-radius: 0 8px 8px 0;
}

.player-list-container {
    background: var(--bar-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 15px 0;
}

.player-slot {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.player-ready {
    color: #22c55e !important;
    font-weight: bold;
    background: rgba(34, 197, 94, 0.1);
}

.player-slot:last-child {
    border-bottom: none;
}

.letter-spacing-2 {
    letter-spacing: 2px;
    font-family: 'Courier New', Courier, monospace;
}

.badge-host {
    background: #facc15;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
}
