/* Custom Colors */
:root {
    --custom-gray: #f5f5f5;
    --custom-yellow: #FFD700;
}

/* Tailwind Custom Configuration */
.bg-custom-gray {
    background-color: var(--custom-gray);
}

.bg-custom-yellow {
    background-color: var(--custom-yellow);
}

/* Custom Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Mobile Menu Transitions */
.mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Form Styles */
input:focus, 
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Button Hover Effects */
.btn-hover:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Card Styles */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

/* Admin Panel Specific Styles */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.admin-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

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

/* Utility Classes */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
