/* ::-webkit-scrollbar {
    width: 1.5rem;
}

::-webkit-scrollbar-track {
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
    border: 8px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    background-color: rgb(99, 130, 255);
    border-radius: 1rem;
    margin: 1rem;
} */

.line-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 3em;
    margin-bottom: 3em;
}

.line {
    flex-grow: 1;
    height: 2px;
    background-color: #545454;
    margin-left: 10px;
    margin-top: 1px;
}

.light {

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.light:hover {
    transform: scale(1.05);
    /* Scale up on hover */
    background-color: #007bff;
    /* Darker shade for hover */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    /* Deeper shadow on hover */
}

