@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
}

body {
    display: flex;
    background-color: rgb(227, 224, 224);
}

.sideBar {
    width: 20%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 5;

    /* For Internet Explorer and Edge */
    -ms-overflow-style: none;
    /* For Firefox */
    scrollbar-width: none;
    /* Add ability to scroll */
    overflow-y: scroll
}

.sideBar.show {
    transform: translateX(0);
}

.list p {
    font-size: small;
}

.mainContent {
    width: 100%;
}

.mainContent.shift {
    margin-left: 20%;
    width: 80%;
}

.navbar {
    position: sticky;
    z-index: 200;
    top: 0;

}

.sideBar p {
    color: rgb(80, 0, 105);
}
.sideBar i {
    color: rgb(80, 0, 105);
}

.sidebar-options {
    transition: 0.4s;
}

.sidebar-options:hover {
    background-color: rgb(255, 208, 0);
    color: rgb(47, 0, 255);
    cursor: pointer;
}

.table button {
    font-size: 10px;

}

.carousel-container {
    height: 400px;
    /* Must be the height of exactly one slide */
    width: 600px;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease-in-out;
    /* Smooth slide effect */
}

.carousel-wrapper img {
    height: 400px;
    /* Same as container height */
    width: 100%;
    object-fit: cover;
}




@media screen and (max-width: 768px) {
    .disable {
        display: none;
    }

    .sideBar {
        width: 60%;
    }

    .mainContent.shift {
        margin-left: 0%;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .social-table {
        font-size: smaller;
    }

    .tasocial-tableble i {
        width: 30px;
        height: 30px;
    }


    .social-widgets button {
        font-size: smaller;
    }

    .social-widgets p {
        font-size: smaller;
    }
}

@media screen and (max-width: 400px) {
    .social-table {
        font-size: 10px;
    }

    .social-table p {
        font-size: 10px;
    }

}