/* Reusable UI components: buttons, modals, toasts */

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Modals */
.modal-content {
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Toasts */
.toast-container {
    right: 20px;
    top: 20px;
}

.toast {
    min-width: 300px;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Donate Icon Component */
.donation-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.coffee-cup {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.coffee-cup:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    text-decoration: none;
}

.coffee-cup svg {
    width: 24px;
    height: 24px;
    color: white;
}


