/* /assets/profile.css */
body {
    background-color: #121212;
    color: #e0e0e0;
}

/* Donor Section Styles */
.donor-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b34 100%);
    border: 2px solid #4a3356;
}

.monthly-donor {
    color: #ffd700;
}

.one-time-donor {
    color: #ff6b9d;
}

.donor-note {
    font-style: italic;
    color: #c0c0c0;
    margin: 10px 0;
}

.donation-stats {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
}

.feature-item strong {
    color: #4a90e2;
    display: block;
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    color: #c0c0c0;
    font-size: 0.9rem;
}

.donation-history {
    margin-top: 20px;
}

.donation-list {
    margin-top: 10px;
}

.donation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 8px;
}

.donation-amount {
    font-weight: bold;
    color: #4CAF50;
}

.donation-date {
    color: #888;
    font-size: 0.9rem;
}

.donation-type {
    color: #4a90e2;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.support-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2d 100%);
    border: 2px solid #4a7c59;
}

.support-benefits {
    margin: 20px 0;
}

.support-benefits h3 {
    color: #4CAF50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.support-benefits ul {
    margin: 10px 0;
    padding-left: 20px;
}

.support-benefits li {
    margin: 5px 0;
    color: #c0c0c0;
}

.support-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    display: inline-block;
    margin-top: 15px;
    transition: transform 0.2s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.profile-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
}
.profile-container h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid #282828;
    padding-bottom: 20px;
}
.profile-section {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}
.profile-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #282828;
    padding-bottom: 15px;
}

.avatar-section {
    text-align: center;
}
.avatar-preview-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #333;
    background-color: #252525;
}
.avatar-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Стилізація кнопки "Choose File", яка є лейблом */
#avatarForm .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #383838;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}
#avatarForm .btn-secondary:hover {
    background-color: #444;
}
#avatarForm .btn-submit {
    margin-top: 15px;
}

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9em; color: #ccc; }
.form-group input {
    width: 100%;
    padding: 12px;
    background-color: #1f1f1f;
    border: 1px solid #383838;
    color: #f0f0f0;
    border-radius: 5px;
    font-size: 1em;
}
.form-group input:focus { outline: none; border-color: #E8BD2C; }
.form-group input:disabled { background-color: #252525; color: #888; cursor: not-allowed; }

.btn-submit {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    background-color: #E8BD2C;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.btn-submit:hover { background-color: #d1a514; }
.btn-submit:disabled { background-color: #444; color: #888; cursor: not-allowed; }

.alert { padding: 15px; margin-bottom: 20px; border-radius: 5px; }
.alert-success { color: #d4edda; background-color: #1c3b23; border: 1px solid #3f593f; }
.alert-danger { color: #f8d7da; background-color: #4a2b2b; border: 1px solid #6e4141; }