/* Apply to the body element */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');


.sidebar {
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    scrollbar-width: none; /* Firefox */
}
.back-button {
    position: absolute;
    left: 1%;
    top: -4%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1em;
 
}

.back-button img {
    width: 30px;
    height: 30px;
}
html body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: rgba(10, 10, 10, 0);
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Hides scrollbar but still allows scrolling */
    overflow-y: scroll; /* Keeps vertical scrolling enabled */

}

html {
    background-color: rgb(10, 10, 10);
}

body::-webkit-scrollbar {
    display: none; /* Hides the scrollbar */
}

.scrollable-element {
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
}

.scrollable-element::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    margin-top: 2%;
}

p a {
    color: #5a86e6; /* Color for the link */
    text-decoration: none; /* Remove underline */
    display: flex;
    align-items: center; /* Center icon and text vertically */
}

p a i {
    font-size: 14px; /* Icon size */
    margin-right: 5px; /* Space between icon and text */
}

.usernametop, .usernamesandname {
    margin-top: 2%;


    
}
.usernametop{
    text-align: center;
    margin-top: -1px;
    margin-bottom: 9%;
    height: auto;



}
.usernamesandname h3 {
    margin: 0;
    font-size: 16px;
}

.usernamesandname h5 {
    margin: 1%;
    font-size: 16px;
}

.header {
    margin-top: 19px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif; /* New font */
    justify-content: space-between;
    background-color: #00000000;
    height: 60px;
    z-index: 1000;
}

.profile {
    text-align: left;
    font-family: 'Roboto', sans-serif; /* New font */
font-size: 18px;
    padding: 20px;
    margin: 1px;
    border-radius: 10px;
    align-items: center;
    background-color: #00000000;

}

.profile img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-top: -22%;
    border: 3px solid transparent;
    border: 1px solid #ffffff10; /* Border at the bottom */
    box-shadow: 0 0 3px 2px rgba(41, 41, 41, 0.8);

}

.profile h1, .profile h2 {
    font-size: 20px;
    margin: 2px 0;
}

.profile h2 {
    text-align: left;
}

.profile p {
    font-size: 15px;
    color: #ffffff;
}




.stats111 {
    display: flex;
    justify-content: space-around;
    margin-top: 6%;
    text-align: center;
    gap: 12px;

}
.stats111 h2{
    text-align: center;

}

.stats111 div {
    text-align: center;
    color: #ffffff;
}

.stats111 div h2 {
    font-size: 16px;
}

.stats111 div p {
    font-size: 15px;
}








#follow:hover::before {
    opacity: 1;
    border-color: transparent;
}
.catagories {
    justify-content: center;
    margin-top: 2%;
}

.catagories div {
}









.search-container {
    position: relative;
    display: flex;
    align-items: left;
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.search-icon:hover {
    transform: scale(1.3);
}

.search-input {
    padding: 10px;
    background-color: #444444;
    border-radius: 17px;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0);
    width: 60%; /* Adjust width to make input smaller */
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    max-width: 500px; /* Set a max-width to prevent it from growing too large */
    box-sizing: border-box; /* Ensure padding does not affect width */
    cursor: pointer;

}


.search-container:hover .search-input,
.search-input.active {
    width: 350px;
    opacity: 1;
    pointer-events: auto;
}




/* Container for posts */
.posts {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #1d1d1d09;
    margin: 20px auto;
    max-width: 1200px;
}
.contensttabs{
    margin-top: 15px;
}
/* Individual post */
.post {
    display: flex;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f900; /* Transparent background */
    border-radius: 8px;
    align-items: center; /* Align items in the center */
}

/* Thumbnail image in a post */
.post img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Media content in a post */
.post-media {
    width: 100px;
    height: 100px;
    object-fit: cover; /* Ensure the media fits within the dimensions */
}

/* Text content in a post */
.post p {
    margin-left: 15px;
    margin-top: 4px;
    font-size: 16px;
    color: #ffffff; /* White text color */
}

/* Styles for the point separator */
.post-info .point {
    color: #ffffff; /* White color for the point */
    margin: 0 5px; /* Spacing around the point */
    font-size: 16px;
}

/* Styles for the views */
.post-info .views {
    color: #ffffff; /* Light gray color for the views */
}






.more {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 9px; /* Add some padding around the container */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    margin-top: -2%;
}

.more::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.more_about {
    display: flex;
    flex-direction: row;
    gap: 10px; /* Space between items */
    align-items: flex-start; /* Align items to the top */
    padding: 7px;
}

.more_about .item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    padding: 18px; /* Padding inside each item */
    background-color: #c7c7c71a; /* Semi-transparent background color */
    color: #ffffff; /* Text color */
    cursor: pointer;
    text-align: left;
    box-shadow: none; /* Remove shadow */
    flex-shrink: 0; /* Prevent items from shrinking */
}

.icon {
    width: 30px; /* Smaller icon size */
    height: 30px; /* Smaller icon size */
}

.text {
    display: flex;
    flex-direction: column;
}

.title {
    margin: 0;
    font-size: 14px; /* Smaller title font size */
    color: #fff; /* Text color */
}

.description {
    margin: 0;
    font-size: 12px; /* Smaller description font size */
    color: #ccc; /* Text color */
}







/* Remove any padding/margin from mobile browsers */
@media only screen and (max-width: 600px) {
    .header, .container, .footer {
        margin: 0;
        padding: 0;
    }
    
.stats111 {
    display: flex;
    justify-content: space-around;
    margin-top: 6%;
    text-align: center;

}
.stats111 h2{
    text-align: center;

}

.stats111 div {
    text-align: center;
    color: #ffffff;
}

.stats111 div h2 {
    font-size: 13px;
}

.stats111 div p {
    font-size: 13px;
}




}





/* Media query for responsive design */
@media (max-width: 768px) {

    .profile h1, .profile h2 {
        font-size: 20px;
    }
    .stats111 div h2 {
        font-size: 14px;
    }
    .stats111 div p {
        font-size: 13px;
    }


}




.clasesbut {
    margin-top: 10px;
    margin-bottom: -7%;
}

.clasesbut button{
    border: 1px solid #eeeeee27; /* Border at the bottom */
    width: 42%;
    border-radius: 22px;
    margin: 9px ;
}



/* Include this in your HTML head or CSS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.sidebar {
    position: fixed;
    top: 0;
    left: 0; /* Slide in from the left */
    height: 100%;
    width: 75%;
    background-color: #161616;
    transform: translateX(-100%); /* Initially hidden off-screen to the left */
    transition: transform 0.3s ease;
    color: #fff;
    z-index: 1000;
    overflow-y: auto;
    font-size: 16px;
    font-family: 'Roboto', sans-serif; /* New font */
}

.sidebar-header {
    margin-top: 12px; /* Space at the top */
    display: flex; /* Use flexbox for horizontal layout */
    flex-direction: row; /* Ensure elements are in a row */
    justify-content: space-between; /* Space between elements */
    align-items: center; /* Center elements vertically */
    padding: 5px; /* Adjust padding for more control */
    border-bottom: 1px solid #44444400; /* Border at the bottom */
    font-size: 14px; /* Font size */
}

.sidebar-icon {
    display: flex; /* Use flexbox for horizontal layout */
    align-items: center; /* Center elements vertically */
    gap: 1px; /* Space between icons */
}

.sidebar-icon img {
    width: 24px; /* Icon width */
    height: auto; /* Maintain aspect ratio */
}

.sidebar-menu {
    padding: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif; /* Apply new font */
}

.menu-item img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.menu-item span {
    font-size: 16px;
}

hr {
    border: 0;
    border-top: 1px solid #44444402;
    margin: 10px 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.open-sidebar-btn {
    position: fixed;
    top: 1px;
    right: 20px; /* Button positioned to the right */
    background-color: #1b1b1b00;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    font-size: 24px;
    font-family: 'Roboto', sans-serif; /* Apply new font */
}

.open-sidebar-btn:hover {
    background-color: #33333300;
}
.share-options img {
    width: 20px;
    height: 20px;
}