.dbpro-donation-widget {
    background: linear-gradient(135deg, #0088dd 0%, #2879FE 100%);
    border-radius: 12px;
    padding: 25px;
    color: white;
}

.dbpro-donation-amount-input {
    margin-bottom: 15px;
}

.dbpro-donation-progress {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dbpro-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.dbpro-progress-label {
    font-weight: bold;
}

.dbpro-progress-amount {
    opacity: 0.9;
}

.dbpro-progress-bar {
    width: 100%;
    height: 24px;
    border-radius: 6px;
    border: none;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.dbpro-progress-bar::-webkit-progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.dbpro-progress-bar::-webkit-progress-value {
    background: linear-gradient(90deg, #4db8ff 0%, #1565c0 100%);
    border-radius: 6px;
}

.dbpro-progress-bar::-moz-progress-bar {
    background: linear-gradient(90deg, #4db8ff 0%, #1565c0 100%);
    border-radius: 6px;
}

.dbpro-progress-percentage {
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    opacity: 0.9;
}

.dbpro-donation-amount-input input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
}

.dbpro-donation-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.dbpro-preset {
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.dbpro-preset:hover,
.dbpro-preset.active {
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
}

.dbpro-donation-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dbpro-btn {
    padding: 12px;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.dbpro-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 600px) {
    .dbpro-donation-presets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dbpro-donation-buttons {
        grid-template-columns: 1fr;
    }
}