﻿/* Home.css – general layout improvements */

.container {
    max-width: 1280px;
}

main .container {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal enhancements */
.modal-content {
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modal-header .btn-close {
    transition: transform 0.2s;
}

    .modal-header .btn-close:hover {
        transform: rotate(90deg);
    }

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
    border-color: #0d6efd;
}
