/* Prevents layout shifts and ensures sticky positioning works */
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Inter', sans-serif;
    position: relative; /* Required for some overflow contexts */
}

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 50%;
    bottom: 30px;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

.nav-link.active {
    color: #22d3ee;
    background-color: rgba(20, 184, 166, 0.1);
}

.social-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.social-card:hover {
    background-color: #374151;
    transform: translateY(-4px);
}
