/* KUNSTPATE CHARITY DASHBOARD CSS */
/* Version: 1.0 */

.kp-charity-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kp-charity-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.kp-charity-header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

.kp-charity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.kp-charity-stat-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.kp-charity-stat-card:hover {
    transform: translateY(-5px);
}

.kp-charity-stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff9a9e;
    margin-bottom: 10px;
}

.kp-charity-stat-label {
    color: #666;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kp-charity-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.kp-charity-section {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.kp-charity-section h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #ff9a9e;
    padding-bottom: 10px;
}

.kp-charity-register {
    background: #f8f9fa;
    border: 2px dashed #ff9a9e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.kp-charity-register h2 {
    color: #ff9a9e;
    margin-bottom: 15px;
}

.kp-charity-register p {
    color: #666;
    margin-bottom: 20px;
}

.kp-charity-button {
    background: #ff9a9e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.kp-charity-button:hover {
    background: #ff8a8e;
}

.kp-charity-button-secondary {
    background: #6c757d;
}

.kp-charity-button-secondary:hover {
    background: #5a6268;
}

.kp-charity-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.kp-charity-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.kp-charity-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Charity Table */
.kp-charity-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.kp-charity-table th,
.kp-charity-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.kp-charity-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.kp-charity-table tr:hover {
    background: #f8f9fa;
}

.kp-charity-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}

.kp-charity-status.pending {
    background: #fff3cd;
    color: #856404;
}

.kp-charity-status.completed {
    background: #d4edda;
    color: #155724;
}

.kp-charity-status.failed {
    background: #f8d7da;
    color: #721c24;
}

/* Suggestions Grid */
.kp-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.kp-suggestion-item {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.kp-suggestion-item:hover {
    transform: translateY(-5px);
}

.kp-suggestion-item h4 {
    margin-top: 0;
    color: #333;
}

.kp-suggestion-meta {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 0.9em;
    color: #666;
}

.kp-suggestion-category {
    background: #ff9a9e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.kp-suggestion-actions {
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kp-charity-sections {
        grid-template-columns: 1fr;
    }
    
    .kp-charity-stats {
        grid-template-columns: 1fr;
    }
    
    .kp-charity-header h1 {
        font-size: 2em;
    }
    
    .kp-suggestions-grid {
        grid-template-columns: 1fr;
    }
}




