/*
Theme Name:     Hello Elementor Child
Theme URI:      https://yourwebsite.com/
Description:    A child theme for Hello Elementor
Author:         Your Name
Author URI:     https://yourwebsite.com/
Template:       hello-elementor
Version:        1.0.0
*/

/* You can add your custom CSS below */


/* Layout wrapper */
header {
    position: relative;
	margin-bottom:10px;
}
.main-cont {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
}

#youtube-style-layout {
  display: flex;
  min-height: 100vh;
}
.main-content {
    padding: 0 !important;
}
/* Sidebar */
#youtube-sidebar {
  width: 240px;
  background-color: #000;
  color: white;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

/* Closed state */
#youtube-sidebar.closed {
  width: 72px;
}

/* Sidebar header */
.logo-toggle {
  display: flex;
  align-items: center;
  padding: 10px;
}

#sidebar-toggle {
  background: none;
  color: white;
  font-size: 22px;
  border: none;
  cursor: pointer;
}

.logo img {
  height: 24px;
  margin-left: 10px;
}

/* Navigation */
#youtube-sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-item:hover {
  background-color: #272727;
}

.nav-item.active {
  background-color: #373737;
  border-radius: 10px;
}

.nav-item .icon {
  font-size: 20px;
  width: 30px;
  text-align: center;
}

.nav-item .label {
  transition: opacity 0.2s ease;
}

/* Hide labels when sidebar is closed */
#youtube-sidebar.closed .label {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

/* Main content */
.main-content {
  background: #000;
  padding: 0px !important;
}

