/* ============================================================================
   DAILY CHECK-IN BUTTON STYLES
   Add this to your main.css or create checkin-styles.css
   ========================================================================== */

.check-in-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    margin-right: 8px;
    min-width: 40px;
    height: 40px;
}

.check-in-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.check-in-btn:active {
    transform: translateY(0);
}

.check-in-btn.can-claim {
    animation: pulse 2s ease-in-out infinite;
}

.check-in-btn.claimed {
    opacity: 0.6;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    cursor: default;
}

.check-in-icon {
    font-size: 20px;
}

/* Hide text elements - icon only */
.check-in-text,
.check-in-streak {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
}

/* Check-in Modal */
.check-in-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.check-in-content {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .check-in-btn {
        padding: 6px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .check-in-icon {
        font-size: 14px;
    }
    
    .check-in-text {
        display: none; /* Hide "Check-in" text on mobile */
    }
    
    .check-in-streak {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .check-in-content {
        padding: 30px 20px;
        width: 95%;
    }
}
