@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #1b9645;
    background-image: linear-gradient(to bottom, #1b9645 0%, #1b9645 100%);
}

section {
    transition: background 0.5s ease;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
    border: 1px solid white;
}

::-webkit-scrollbar-thumb:hover {
    background: white;
    border-color: white;
}
/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-up {
    animation: slideUp 0.5s ease-out;
}

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

/* Button hover effects */
.btn-hover-grow {
    transition: transform 0.3s ease;
}

.btn-hover-grow:hover {
    transform: translateY(-2px);
}
/* Card hover effects */
.card-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-hover:hover {
    box-shadow: 0 10px 25px -5px rgba(244, 183, 63, 0.3);
    transform: translateY(-5px);
}
/* Image preview styles */
.image-preview {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100px;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.remove-image {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background-color: white;
    color: black;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.remove-image:hover {
    background-color: white;
    color: black;
    transform: scale(1.1);
}
/* Hover effect styles */
.hovered-element {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Validation styles */
.border-red-500 {
    border-color: white !important;
    animation: shake 0.5s;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}
