html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the height of the body is 100% */
    font-family: 'Montserrat';
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth;
    scroll-padding-top: 25vh;
}

body.loading {
    overflow: hidden; /* When loading, prevent scrolling */
}

.loading-overlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d1117;
    z-index: 9999;
}

.content {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    height: 390vh;  /* You may need to adjust this based on your actual content height */
    width: 99.6vw;
    background-color: #0d1117;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    border-top: solid 0.3vh #343c44;
    border-bottom: solid 0.3vh #343c44;
    border-left: solid 0.2vw #343c44;
    border-right: solid 0.2vw #343c44;
}


body.loaded .loading-overlay {
    display: none;
}

body.loaded .content {
    display: flex;
}

.circle-button {
    width: 3.2vw;
    height: 3.2vw;
    background-color: #151b23;
    border-radius: 0.8vw;
    position: fixed;
    top: 0.7vh;
    left: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: 0.6vh solid #151b23; 
    box-sizing: border-box; 
    box-shadow: inset 0 0 0 0.1vw rgb(203, 203, 203); 
    animation: slideFromLeft 3.5s ease-out forwards; /* Apply the animation */
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

@keyframes slideFromLeft {
    0% {
        left: -10vw;
        opacity: 0.5;
    }

    70% {
        left: -10vw;
        opacity: 0.5;
    }

    85% {
        left: 0.4vw;
        opacity: 1;
    }

    88% {
        left: 0.2vw;
        opacity: 1;
    }

    100% {
        left: 0.6vw;
        opacity: 1;
    }
}

.circle-button:hover {
    transform: scale(1.05);
}

.menu-icon {
    font-size: 1.8vw;
    padding-bottom: 0.4vh;
    color: white;
}

.sidebar {
    height: 91.8vh;
    width: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #0d1117;
    color: rgb(203, 203, 203);
    overflow-y: hidden;
    transition: width 0.05s ease;
    z-index: 1000;
    border: solid 1px #343c44;
}

.sidebar.open {
    width: 22.5vw;
}

.sidebar-content a {
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    border-radius: 1vh;
    padding: 1.5vh;
    padding-top: 2vh;
    text-decoration: none;
    background-color: #151b23;
    color: rgb(203, 203, 203);
    font-size: 2.5vh;
    margin: 5px 0;
    transition: background-color 0.3s;
    border: solid 1px #343c44;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.sidebar-content a:hover {
    background-color: #0d1117;
    transform: scale(1.02);
}

.icon {
    position: absolute;
    width: 3.8vh;
    height: 3.8vh;
    left: 1.5vw;
    vertical-align: middle;
}

.icon5 {
    position: absolute;
    width: 4.7vh !important; 
    height: 4.7vh !important;
    left: 1.2vw;
    vertical-align: middle;
}

.close-btn {
    background-color: #0d1117;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 3vh;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.page-link {
    padding-bottom: 0.3vh;
    margin-bottom: 1.6vh;
}

.instructions {
    position: absolute;
    width: 20vw;
    font-size: 2.25vh;
    color: #5e646b;
    margin-right: 10vh;
    bottom: 5vh;
}

.sidebartitle {
    font-size: 2.8vh; 
    font-weight: normal;
    padding-left: 2vw; 
    margin-top: 5vh;
    margin-bottom: 3.8vh;
    color: white;
}

/*.surveyButton {
    position: absolute;  
    bottom: 11vh; 
    right: 1.5vw;  
    width: 4vw; 
    height: 3.8vw; 
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 1002; 
    transition: opacity 1s; 
}*/

.surveyButtonImg {
    width: 3.5vw;
    height: 3.5vw;
    background-color: #151b23;
    border-radius: 0.8vw;
    position: fixed;
    bottom: 5.3vh;
    right: -10vw; /* Start off-screen to the right */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: 0.6vh solid #151b23;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 0.1vw rgb(203, 203, 203);
    animation: slideFromRight 3.5s ease-out forwards; /* Apply the animation */
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

/* Define the animation */
@keyframes slideFromRight {
    0% {
        right: -10vw;
        opacity: 0.5;
    }

    70% {
        right: -10vw;
        opacity: 0.5;
    }

    85% {
        right: 4.5vw;
        opacity: 1;
    }

    88% {
        right: 4vw;
        opacity: 1;
    }

    100% {
        right: 4.5vw;
        opacity: 1;
    }
}

.surveyButtonImg:hover {
    transform: scale(1.05);
}

.iframe {
    position: fixed; 
    width: 25%; 
    height: 91.9vh;
    border: solid 1px #343c44; 
    right: 2.6vh;
    bottom: 0; 
    z-index: 4;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    background-color: rgba(13, 17, 23, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(7px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(7px); /* For Safari */
    border-bottom: solid 1px #343c44;
    padding: 0;
    transition: transform 0.05s ease, box-shadow 0.1s ease;
    animation: slideFromTop 3.5s ease-out forwards;
    z-index: 4; /* Ensure it's above other elements */
}

@keyframes slideFromTop {
    0% {
        top: -10vw;
        opacity: 0.5;
    }
    70% {
        top: -10vw;
        opacity: 0.5;
    }
    85% {
        top: 0vw;
        opacity: 1;
    }
    88% {
        top: -0.5vw;
        opacity: 1;
    }
    100% {
        top: 0vw;
        opacity: 1;
    }
}

.profile-pic {
    position: absolute;
    top: 1.2vh;
    left: 5.5vw; 
    width: 2.7vw;
    border: solid 0.5px rgb(191, 191, 191); 
    border-radius: 50%;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.profile-pic:hover {
    border: solid 0.5px white;
    transform: scale(1.05); /* Scale to 2x size */
}

.name {
    position: absolute;
    top: -1vh;
    left: 9.5vw;
    font-size: 1.5vw;
    color: rgb(191, 191, 191);
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.name:hover {
    color: rgb(145, 145, 145);
}

.page-name {
    position: absolute;
    top: -0.9vh;
    left: 22vw;
    font-size: 1.5vw;
    color: rgb(191, 191, 191);
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.page-name:hover {
    color: rgb(145, 145, 145);
}

.searchbar {
    position: absolute;
    top: 2vh;
    right: 24.5vw;
    width: 24vw;
    height: 4.5vh;
    padding: 0 1vw;
    border: solid 0.5px rgb(145, 145, 145);
    border-radius: 1vh;
    background-color: #151b23;
}

#searchInput {
    position: absolute;
    top: 0.3vh;
    right: 0.1vh;
    width: 23vw;
    height: 3.8vh;
    background-color: transparent;
    color: rgb(203, 203, 203);
    font-size: 2.5vh;
    border: none;
    padding: 0;
    padding-left: 2vh;
    outline: none;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#searchButton {
    position: absolute;
    top: 0;
    left: 0vh;
    width: 2vh;
    height: 3vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

#searchInput:hover ~ #searchButton,
#searchInput:hover ~ #searchInput,
#searchInput:hover ~ .searchbar,
#searchInput:hover {
  background-color: #11161d;
}

/* Hover effect when hovering on searchButton */
#searchButton:hover ~ #searchInput,
#searchButton:hover ~ #searchButton,
#searchButton:hover ~ .searchbar,
#searchButton:hover {
  background-color: #11161d;
}

/* Hover effect when hovering on searchbar */
.searchbar:hover .searchInput,
.searchbar:hover .searchButton,
.searchbar:hover {
  background-color: #11161d;
}

/* Add border when hovering on searchInput, searchButton, or searchbar */
#searchInput:hover ~ .searchbar,
#searchButton:hover ~ .searchbar,
.searchbar:hover {
  border: solid 1px rgb(191, 191, 191);
}


.search-image {
    position: absolute;
    top: 0.5vh;
    left: 0.5vw;
    width: 3.5vh;
    height: 3.5vh;
    border-radius: 50%;
    color: white;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#itemsList {
    list-style: none;
    position: absolute;
    top: 5.7vh;
    right: 24.5vw;
    width: 26vw;
    background-color: #151b23;
    border: none;
    border-radius: 1.2vh;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 0;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.items {
    position: relative;
    padding: 0;
    width: 23vw;
    height: 3vw;
    border-radius: 1vh;
    color: rgb(191, 191, 191);
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border: solid 0.1px #151b23;
    margin-bottom: 1.5vh;
    padding-left: 3.5vh;
    padding-bottom: 1.5vh;
}

.items:hover {
    border: solid 0.1px rgb(191, 191, 191);
    background-color: #11161d;
}

.main-text {
    font-size: 2.6vh;
    margin-right: 80vw;
    width: 11vh;
}

.search-side-text {
    color: #5e646b;
    font-size: 1.1vw;
    margin-left: 7vw;
    margin-top: -5.5vh;
}

.contact {
    position: absolute;
    top: 1.2vh;
    right: 19.2vw;
    width: 3.3vw;
    height: 2.7vw;
    font-size: 2vh;
    background-color: #151b23;
    border: solid 0.5px #5e646b;
    border-radius: 2vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.contact:hover {
    background-color: #11161d;
    transform: scale(1.05);
    border: solid 0.5px rgb(145, 145, 145);
}

.contact-icon {
    position: absolute;
    top: 1.4vh;
    left: 2vh;
    width: 2.9vh;
    height: 2.9vh;
}

#portfolio-imitation {
    position: absolute;
    top: 110vh;
    left: 0;
}

.portfolio {
    position: absolute;
    top: 1.2vh;
    right: 14.7vw;
    width: 3.3vw;
    height: 2.7vw;
    font-size: 2vh;
    background-color: #151b23;
    border: solid 0.5px #5e646b;
    border-radius: 2vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.portfolio:hover {
    background-color: #11161d;
    transform: scale(1.05);
    border: solid 0.5px rgb(145, 145, 145);
}

.portfolio-icon {
    position: absolute;
    top: 1.35vh;
    left: 2.1vh;
    width: 2.8vh;
    height: 2.8vh;
}

.notification {
    position: absolute;
    top: 1.2vh;
    right: 10.3vw;
    width: 3.3vw;
    height: 2.7vw;
    font-size: 2vh;
    background-color: #151b23;
    border: solid 0.5px #5e646b;
    border-radius: 2vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.notification:hover {
    background-color: #11161d;
    transform: scale(1.05);
    border: solid 0.5px rgb(145, 145, 145);
}

.notification-icon {
    position: absolute;
    top: 1.3vh;
    left: 1.85vh;
    width: 3.1vh;
    height: 2.9vh;
}

.sign-in {
    position: absolute;
    top: 1.3vh;
    right: 3vw;
    width: 6.3vw;
    height: 2.6vw;
    font-size: 2.4vh;
    font-family: 'Montserrat';;
    background-color: #084cfc;
    color: white;
    border: solid 1px #151b23;
    border-radius: 2.5vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.sign-in:hover {
    background-color: #0c41c6;
    border: solid 1px rgb(203, 203, 203);
    transform: scale(1.05);
}

.side-line {
    position: fixed;
    left: 0;
    top: 8vh;
    height: 92vh;
    width: 4.4vw;
    border-top: solid 1px #343c44;
    border-right: solid 1px #343c44;
    background-image: radial-gradient(circle, #343434 10%, transparent 20%);
    background-size: 17px 17px; /* Controls dot size and spacing */
    opacity: 0;
    animation: sideline 3.5s ease-out forwards;
}

@keyframes sideline {
    0% {
        left: -10vh;
        opacity: 0.5;
    }

    70% {
        left: -10vh;
        opacity: 0.5;
    }

    85% {
        left: 2vh;
        opacity: 1;
    }

    92.5% {
        left: 0vh;
        opacity: 1;
    }

    100% {
        left: 0vh;
        opacity: 1;
    }
}

.heading {
    position: absolute;
    top: 14vh;
    left: 16.7vw;
    font-size: 6.5vh;
    font-family: 'Montserrat';
    color: white;
    letter-spacing: 1.8vh;
    font-weight: bold;
    text-shadow: 2vh 2vh 1vh #000000;
    cursor: pointer;
}

.about {
    position: absolute;
    top: 30vh;
    left: 14vw;
    width: 70%;
    color: rgb(191, 191, 191);
}

.about-text {
    font-size: 2.3vh;
    line-height: 5.5vh;
    margin-bottom: 1vh;
    padding: 2vh;
    padding-left: 6vh;
    padding-right: 4vh;
    letter-spacing: 0.3vh;
}

.slideshow {
    background-color: #1b232c;
    border: solid 1px #343c44;
    border-radius: 1.3vh;
    color: rgb(191, 191, 191);
    position: absolute;
    top: 63vh;
    left: 34vh;
    width: 65%;
    height: 15vh;
    padding: 2vh;
    padding-left: 4vh;
    padding-right: 4vh;
    overflow: hidden;
    box-shadow: 2vh 2vh 1vh #000000;
    opacity: 0;
    animation: slideshow 3.5s ease-out forwards;
}

@keyframes slideshow {
    0% {
        left: 250vh;
        opacity: 0.5;
    }

    70% {
        left: 250vh;
        opacity: 0.5;
    }

    85% {
        left: 34vh;
        opacity: 1;
    }

    88% {
        left: 26vh;
        opacity: 1;
    }

    100% {
        left: 34vh;
        opacity: 1;
    }
}

.card {
    line-height: 175%;
    font-size: 2vh;
    letter-spacing: 0.25vh;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    position:absolute;
    top: 0.5vh;
    width: 96%;
    word-wrap: break-word; /* Breaks long words */
    white-space: normal; /* Allows text to wrap */
    overflow-wrap: break-word; /* Forces long words to wrap */
}

.fade {
    animation: fadeEffect 2s;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dots {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 12%;
}

.dot {
    height: 6px;
    width: 6px;
    margin: 0 5px;
    background-color: #c1c7cd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

.portfolio-title {
    position: absolute;
    top: 96vh;
    left: 17.5vw;
    font-size: 3vh;
    letter-spacing: 0.3vh;
    color: white;
}

.portfolio-card {
    background-color: #1b232c;
    border: solid 1px #343c44;
    border-radius: 1.5vh;
    position: absolute;
    width: 21%;
    height: 60vh;
    box-shadow: 2vh 2vh 1vh #000000;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.portfolio-card:hover {
    box-shadow: 2.5vh 2.5vh 2vh #000000;
    border: solid 1px #5e646b;
    transform: scale(1.02);
}

#c1 {
    position: absolute;
    top: 110vh;
    left: 15vw;
}

#c2 {
    position: absolute;
    top: 110vh;
    left: 40vw;
}

#c3 {
    position: absolute;
    top: 110vh;
    right: 14vw;
}

.portfolio-image {
    position: absolute;
    width: 100%;
    height: 43%;
    left: 0;
    top: 0;
    overflow: hidden;
}

#i1 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
}

#i2 {
    position: absolute;
    width: 120%;
    height: 115%;
    left: -5%;
    top: -10%;
}

#i3 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.portfolio-text {
    text-align: center;
}

.random-container {
    position: absolute;
    top: 25vh;
    left: -7%;
    width: 100%;
    color: rgb(191, 191, 191);
    padding: 2vh;
    padding-left: 4vh;
    padding-right: 4vh;
    letter-spacing: 0.3vh;
}

.project-title {
    font-size: 3vh;
    font-family: 'Montserrat';
    color: white;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0.3vh;
    word-spacing: 0.4vh;
}

.project-description {
    font-size: 2.1vh;
    line-height: 4vh;
    width: 85%;
    color: rgb(191, 191, 191);
    letter-spacing: 0.2vh;
}

#seeMore {
    position: absolute;
    top: 172vh;
    right: 5vw;
    width: 10vw;
    height: 4vw;
    font-size: 2.5vh;
    font-family: 'Montserrat';;
    background-color: #084cfc;
    color: white;
    border: solid 1px #151b23;
    border-radius: 4vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
    box-shadow: 0px 0px 15px 8px #000000;
    font-weight: bold;
}

#seeMore:hover {
    background-color: #0c41c6;
    border: solid 1px rgb(203, 203, 203);
    transform: scale(1.05);
    box-shadow: 0px 0px 15px 10px #000000;
}

#community {
    height: 100vh;
    width: 70vw;
    position: absolute;
    top: 208vh;
    left: 17vw;
    border-radius: 4vh;
    background-color: #11161d;
    border: solid 1px #343c44;
    box-shadow: 2vh 2vh 1vh #000000;
}

.community-title {
    position: absolute;
    top: 195vh;
    left: 40vw;
    font-size: 3.3vh;
    font-family: 'Montserrat';
    color: white;
    letter-spacing: 0.5vh;
    word-spacing: 0.8vh;
    font-weight: bold;
    text-shadow: 1vh 1vh 1vh #000000;
    z-index: 1;
}

.message {
    background-color: #1b232c;
    color: rgb(191, 191, 191);
    border-radius: 1.5vh;
    border-top-left-radius: 0;
    box-shadow: 0.5vh 0.5vh 1vh #000000;
    user-select: none; /* Prevents text selection */
}

#m1 {
    position: absolute;
    top: 5vh;
    left: 7vw;
    width: 56vw;
    height: 21vh;
    transition: transform 0.35s ease-in-out; /* Animation duration */
}

#m1:hover {
    box-shadow: 1vh 1vh 1vh #000000 !important;
    transform: scale(1.005);
    background-color: #202932;
    border: solid 1px #5e646b;
}

#Community-respond {
    position: absolute;
    top: 11vh;
    left: 6vw;
    width: 38vw;
    height: 3vh;
    border-radius: 1vh;
    border: solid 1px #5e646b;
    background-color: #151b23;
    color: rgb(191, 191, 191);
    padding: 2vh;
    font-size: 2.3vh;
    letter-spacing: 0.3vh;
    box-shadow: 0.5vh 0.5vh 1vh #000000;
}

#Community-respond:hover {
    background-color: #11161d;
}

#send {
    position: absolute;
    top: 11vh;
    left: 47vw;
    width: 4vw;
    height: 7vh;
    border-radius: 1.8vh;
    background-color: #084cfc;
    border: solid 1px #151b23;
    overflow: hidden;
    transition: transform 0.25s ease-in-out; /* Animation duration */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow: 0.5vh 0.5vh 1vh #000000;
}

#send:hover {
    background-color: #0c41c6;
    border: solid 1px rgb(203, 203, 203);
    transform: scale(1.03);
    box-shadow: 1vh 1vh 1vh #000000;
}

.send-img {
    width: 1.6vw;
    height: 3.6vh;
}

#m2 {
    position: absolute;
    top: 30vh;
    left: 5vw;
    width: 62vw;
    height: 63vh;
    transition: transform 0.35s ease-in-out; /* Animation duration */
}

#m2:hover {
    box-shadow: 1vh 1vh 1vh #000000 !important;
    transform: scale(1.005);
    background-color: #202932;
    border: solid 1px #5e646b;
}

.poll-container {
    position: absolute;
    width: 70%;
    left: 12.5vh;
    top: 10.5vh;
}

.poll-option {
    display: flex;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 2vh;
    cursor: pointer;
}
.poll-option input {
    display: none;
}

.custom-radio {
    width: 2.2vh;
    height: 2.2vh;
    border-radius: 50%;
    border: 1px solid rgb(145, 145, 145);
    background-color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2vh;
    overflow: hidden;
    transition: transform 0.25s ease-in-out; /* Animation duration */
}

.custom-radio img {
    display: none;
    width: 3.3vh;
    height: 3.1vh;
}

.selected {
    transform: scale(1.1); /* Enlarges the selected radio */
    border: 2px solid white;
    background-color: white !important;
}

.percentage {
    font-size: 2.5vh;
    color: white;
    opacity: 0; /* Always visible */
    font-weight: bold;
    transform: opacity 0.5s ease-in-out;
}

#guitar-percent {
    position: absolute;
    right: 23vh;
}

#piano-percent {
    position: absolute;
    right: 23vh;
}

#violin-percent {
    position: absolute;
    right: 23vh;
}

#drums-percent {
    position: absolute;
    right: 23vh;
}

#indian-percent {
    position: absolute;
    right: 23vh;
}

#other-percent {
    position: absolute;
    right: 23vh;
}

.label-poll {
    font-size: 2.3vh;
    color: white;
    font-weight: bold;
    letter-spacing: 0.15vh;
}

.poll-bar-container {
    width: 75%;
    background-color: white;
    height: 1vh;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
    position: relative;
    opacity: 1 !important;
}

.poll-bar {
    height: 100%;
    width: 0%;
    background: #084cfc; /* Green color */
    transition: width 0.5s ease-in-out;
    opacity: 1 !important;
}

.community-img {
    position: absolute;
    top: 1vh;
    left: 0.6vw;
    width: 9vh;
    height: 9vh;
    cursor: pointer;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.time-sent {
    position: absolute;
    top: 0vh;
    left: 12vh;
    font-size: 2.1vh;
    color: rgb(145, 145, 145);
    font-family: 'Montserrat';
    letter-spacing: 0.2vh;
    cursor: pointer;
}

.time-sent:hover {
    color: rgb(203, 203, 203);
}

.actual-msg {
    position: absolute;
    top: 3.2vh;
    left: 12.2vh;
    width: 85%;
    height: 8vh;
    font-size: 2.3vh;
    color: white;
    font-family: 'Montserrat';
    letter-spacing: 0.2vh;
    line-height: 3.7vh;
}

.actual-msg:hover {
    color: rgb(203, 203, 203);
}

#More-updates {
    position: absolute;
    top: 59vh;
    right: -4vh;
    width: 13vw;
    height: 4vw;
    font-size: 2.5vh;
    font-family: 'Montserrat';;
    background-color: #084cfc;
    color: white;
    border: solid 1px #151b23;
    border-radius: 4vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
    box-shadow: 0px 0px 15px 8px #000000;
    font-weight: bold;
    z-index: 1;
}

#More-updates:hover {
    background-color: #0c41c6;
    border: solid 1px rgb(203, 203, 203);
    transform: scale(1.05);
    box-shadow: 0px 0px 15px 10px #000000;
}

#contact {
    position: absolute;
    top: 330vh;
    left: 4.4vw;
    width: 95.6vw;
    height: 50vh;
    border-top: solid 1px #343c44;
    border-bottom: solid 1px #343c44;
}

.contact-title {
    position: absolute;
    top: 1.8vh;
    left: 6vw;
    font-size: 3.5vh;
    letter-spacing: 0.5vh;
    color: white;
    font-weight: bold !important;
}

.contact-email {
    position: absolute;
    top: 10vh;
    left: 6vw;
    font-size: 2.5vh;
    letter-spacing: 0.3vh;
    color: white !important;
}

.horizontal {
    position: absolute;
    top: 17vh;
    left: 5vw;
    width: 40%;
    height: 1px;
    background-color: #343c44;
    border: #343c44;
}

#name-label {
    position: absolute;
    top: 22vh;
    left: 6vw;
    font-size: 2.5vh;
    letter-spacing: 0.3vh;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#name-label:hover {
    color: rgb(203, 203, 203);
}

#name {
    position: absolute;
    top: 20.5vh;
    left: 11.5vw;
    width: 25vw;
    height: 2.5vh;
    border-radius: 1vh;
    border: solid 1px #343c44;
    background-color: #151b23;
    color: rgb(191, 191, 191);
    padding: 2vh;
    font-size: 2.35vh;
    letter-spacing: 0.3vh;
    box-shadow: 0.5vh 0.5vh 1vh #000000;
    transition: transform 0.25s ease-in-out;
}

#name:hover {
    background-color: #11161d;
    transform: scale(1.005);
}

#email-label {
    position: absolute;
    top: 22vh;
    left: 42vw;
    font-size: 2.5vh;
    letter-spacing: 0.3vh;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#email-label:hover {
    color: rgb(203, 203, 203);
}

#email {
    position: absolute;
    top: 20.5vh;
    left: 47.5vw;
    width: 25vw;
    height: 2.5vh;
    border-radius: 1vh;
    border: solid 1px #343c44;
    background-color: #151b23;
    color: rgb(191, 191, 191);
    padding: 2vh;
    font-size: 2.35vh;
    letter-spacing: 0.3vh;
    box-shadow: 0.5vh 0.5vh 1vh #000000;
    transition: transform 0.25s ease-in-out;
}

#email:hover {
    background-color: #11161d;
    transform: scale(1.005);
}

#message-label {
    position: absolute;
    top: 31vh;
    left: 6vw;
    font-size: 2.5vh;
    letter-spacing: 0.3vh;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#message-label:hover {
    color: rgb(203, 203, 203);
}

#message {
    position: absolute;
    top: 29.5vh;
    left: 13.5vw;
    width: 25vw;
    height: 12vh;
    border-radius: 1vh;
    border: solid 1px #343c44;
    background-color: #151b23;
    color: rgb(191, 191, 191);
    padding: 2vh;
    font-size: 2.5vh;
    letter-spacing: 0.3vh;
    box-shadow: 0.5vh 0.5vh 1vh #000000;
    transition: transform 0.25s ease-in-out;
    font-family: inherit; /* Use the same font as input */
    font-size: inherit;
    resize: none;
    overflow-y: auto;
}

#message:hover {
    background-color: #11161d;
    transform: scale(1.005);
}

#contact-submit {
    position: absolute;
    top: 32.5vh;
    left: 53vw;
    width: 13vw;
    height: 5vw;
    font-size: 2.8vh;
    font-family: 'Montserrat';;
    background-color: #084cfc;
    color: white;
    border: solid 1px #151b23;
    border-radius: 4vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.25s ease-in-out; /* Animation duration */
    box-shadow: 0px 0px 15px 8px #000000;
    font-weight: bold;
    z-index: 1;
}

#contact-submit:hover {
    background-color: #0c41c6;
    border: solid 1px rgb(203, 203, 203);
    transform: scale(1.05);
    box-shadow: 0px 0px 15px 10px #000000;
}

.copyright {
    position: absolute;
    color: rgb(145, 145, 145);
    right: 50vh;
    left: 50vh;
    top: 380vh;
    font-size: 1.1vw;
}
