.uas-dashboard-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.uas-withdraw-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.uas-withdraw-form input[type="text"],
.uas-withdraw-form input[type="number"] {
    margin-bottom: 12px;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.uas-withdraw-form h2 {
    margin-bottom: 16px;
    font-size: 20px;
}

.uas-withdraw-btn {
    background-color: #28a745;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.uas-withdraw-btn:hover {
    background-color: #218838;
}

