.sensus-donation-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sensus-donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.sensus-amount-tile {
    flex: 1;
    min-width: 100px;
    padding: 20px 10px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sensus-amount-tile:hover {
    border-color: #27ae60;
    color: #27ae60;
}

.sensus-amount-tile.active {
    background: #27ae60;
    border-color: #27ae60;
    color: #fff;
}

.sensus-amount-custom {
    display: flex;
    align-items: center;
    padding: 10px;
    min-width: 150px;
}

.sensus-amount-custom input {
    width: 80px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: right;
    margin-right: 5px;
    outline: none;
}

.sensus-amount-custom.active input {
    color: #fff;
}

.sensus-donation-email {
    margin-bottom: 20px;
}

.sensus-donation-email input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.sensus-donation-email input:focus {
    border-color: #27ae60;
}

.sensus-submit-btn {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sensus-submit-btn:hover:not(:disabled) {
    background: #219150;
}

.sensus-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Goals styling */
.sensus-goal-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sensus-goal-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sensus-goal-content {
    padding: 25px;
}

.sensus-goal-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

.sensus-progress-container {
    margin: 20px 0;
}

.sensus-progress-bar {
    height: 25px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.sensus-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: width 1s ease-in-out;
}

.sensus-progress-text {
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 10px;
}

.sensus-progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.sensus-btn-wesprzyj {
    padding: 12px 30px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sensus-btn-wesprzyj:hover {
    background: #d35400;
}
