.dl-manager-title {
    margin: 0 0 15px 0;
    font-size: 1.4em;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.dl-manager-form {
    max-width: 400px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.dl-manager-form input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.dl-manager-form button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
}

.dl-manager-form button:hover {
    background: #005a87;
}

#dl-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
}

.dl-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.dl-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }