/* Styles pour l'application d'échange de campus */
.request-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}
.request-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.request-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #22c55e;
    transition: width 0.3s ease-in-out;
}
.request-card:hover::after {
    width: 100%;
}
.notification-pop-up {
    animation: slideIn 0.5s forwards, fadeOut 0.5s 2.5s forwards;
}
@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; display: none; }
}
.neon-green-section:hover {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.7);
}
.neon-red-section:hover {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
}

/* Styles généraux */
.container {
    max-width: 800px;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0fdf4;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #d1fae5;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #34d399;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}
.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Styles du pied de page pour qu'il corresponde à la page 'loyer1' */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border-radius: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--primary-green);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

.developer-credits {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
