/* DM Name Prompt Modal */
.dm-name-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.dm-name-modal-content {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 12px;
    width: 400px;
    max-width: 90vw;
    border: 1px solid #333;
}

.dm-name-modal h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.dm-name-modal label {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 13px;
}

.dm-name-modal input {
    width: 100%;
    padding: 10px 12px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.dm-name-modal input:focus {
    outline: none;
    border-color: #3b82f6;
}

.dm-name-modal input::placeholder {
    color: #666;
}

.dm-name-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.dm-name-modal .btn-cancel {
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.dm-name-modal .btn-cancel:hover {
    background: #444;
}

.dm-name-modal .btn-start {
    background: #3b82f6;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.dm-name-modal .btn-start:hover {
    background: #2563eb;
}
