html,
body {
    font-family: 'Lato', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    color: #333;
    min-height: 100vh;
    min-width: 100vw;
}

.container-fluid,
.row {
    height: 100vh;
    min-height: 100vh;
}

.sidebar-panel {
    height: 100vh;
}

.main-content {
    height: 100vh;
}

@media (max-width: 991.98px) {

    html,
    body {
        overflow: auto;
    }

    .container-fluid,
    .row {
        height: auto;
        min-height: 100vh;
    }

    .sidebar-panel {
        height: auto;
        min-height: 50vh;
    }

    .main-content {
        height: auto;
        min-height: 50vh;
    }

    .row {
        flex-direction: column;
    }
}

section {
    padding: 40px 20px;
}

h2 {
    color: #D633E1;
    margin-bottom: 20px;
}

.card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Scroll Arrow Styles */
.project-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(214, 51, 225, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    /* Hidden by default, shown via JS */
    pointer-events: none;
}

.scroll-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-arrow:hover {
    background-color: rgba(214, 51, 225, 1);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

.scroll-content {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

