body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fafafa;
    border-bottom: 1px solid #dbdbdb;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.search-bar input {
    padding: 5px;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
}

.user-options button {
    background: none;
    border: none;
    margin-left: 10px;
    cursor: pointer;
}

.user-options button:hover {
    color: #3897f0;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #dbdbdb;
    background-color: #fff;
}

.profile-picture img {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    border: 2px solid #dbdbdb;
    margin-right: 20px;
}

.profile-info {
    text-align: center;
}

.profile-info h1 {
    margin: 0;
    font-size: 24px;
}

.profile-info p {
    margin: 5px 0 0;
    color: #8e8e8e;
}

.tab-menu {
    background-color: #fff;
    border-bottom: 1px solid #dbdbdb;
    margin-top: 10px;
}

.tab-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
}

.tab-menu ul li {
    margin: 0 15px;
}

.tab-menu ul li a {
    text-decoration: none;
    color: #262626;
    font-weight: bold;
}

.tab-menu ul li a:hover {
    color: #3897f0;
}

main {
    padding: 20px;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.profile-stats li {
    display: inline-block;


    cursor: pointer;
}

.profile-stats li:last-of-type {
    margin-right: 0;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px; /* Maximum width for the grid */
    width: 100%; /* Ensure the grid takes up the full width */
}

.video-item video {
    width: 100%;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
	height:220px;
	background:black;
}

.tab-content {
    display: none;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    text-align: center;
}

.tab-content.active {
    display: block;
}
