h8{
color: #1a1a1a;
}

#video{
  #videoPlayer {
    width: 1600px; /* Stała szerokość */
    height: 780px; /* Stała wysokość */
    max-width: 100%; /* Zapewnia responsywność */
    background-color: black; /* Opcjonalnie: dodaje tło, aby pokazać rozmiar kontenera przed załadowaniem wideo */
}
  }


body {
   user-select: none;
    color: #fff;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 200px;
    background-color: #1a1a1a;
    padding: 20px;
}

.logo h2 {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    
}

.menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.menu li {
    margin: 15px 0;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2em;
}

.menu li a:hover {
    color: #f4c3c3;
}

.content {
    flex-grow: 1;
    background-color: #0a0a0a;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.tile {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.tile:hover {
    background-color: #f4c3c3;
}

input[type="file"] {
    margin-top: 20px;
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background-color: #f4c3c3;
    padding: 10px;
     border-style: solid;
     border-color: #f4c3c3;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #f4c3c3;
}

.music-player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.music-player {
    width: 100%;
    max-width: 600px;
    background-color: #2a2a2a; /* Jasno szare tło */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #352F31;
  border-radius: 15px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #f4c3c3;
 border-radius: 15px; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


audio {
    width: 100%;
    outline: none;
}

audio::-webkit-media-controls-panel {
    background-color: #2a2a2a; /* Tło panelu odtwarzacza */
    border-radius: 10px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-volume-slider {
    background-color: transparent; /* Usuń czarne tło */
    color: #ffffff; /* Biały kolor dla przycisków */
}

audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #ffffff; /* Biały kolor dla paska przewijania i czasu */
}

audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-fullscreen-button {
    background-color: transparent; /* Usuń czarne tło */
    color: #ffffff; /* Biały kolor dla przycisków */
}

.player {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: fadeIn 2s;
}

.current-song {
    margin-bottom: 10px;
}

.seek-bar {
    margin-top: 10px;
}
.seek-bar input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    outline: none;
    opacity: 1;
    appearance: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 64px;
}
.seek-bar input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: none;
    background-color: white;
    border-radius: 20px;
    cursor: pointer;
  }

.controls button {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    width: 70px;
    font-size: 18px;
}

.controls button:hover {
    background-color: #777;
}

.playlist {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 2s;
}
.info {
    background-color: #333;
    padding: 15px 15px; 
    border-radius: 10px;
    width: fit-content;
}
.playlist ul {
    list-style-type: none;
    padding: 0;
}














/* Lyanochat */



@import url('https://fonts.cdnfonts.com/css/product-sans');

@media (min-width: 992px) {
 .chat-container {
    width: 50%;
  }


.chat-box {

background-color: #1a1a1a;

}
.chat-container {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
 
    position: relative;
}

/* Default styles */
.chat-container {
  width: 100%;
}

/* Media query for tablets and larger */
@media (min-width: 768px) {
  .chat-container {
    width: 100%; /* Adjust width for larger screens */
  }
}

/* Media query for desktops and larger */
@media (min-width: 992px) {
  .chat-container {
    width: 50%; /* Adjust width for even larger screens */
  }
}



.welcome-message {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 15px;
    margin: 15px 0;
}

#chat-box {
    background-color: #111111;
    color: #f4c3c3;
    border-radius: 10px;
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
    border: 2px solid #f4c3c3;
    word-wrap: break-word; /* Dodane zawijanie wierszy */
}

.message {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    
}

input[type="text"], input[type="password"], textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #f4c3c3;

  border-radius: 10px;
}

input[type="submit"] {
    background-color: #0f0f0f;
     border-style: solid;
     border-color:#f4c3c3;
    color: #fff;
    padding: 10px 20px;
    
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
}

input[type="submit"]:hover {
    color: #f4c3c3;
}

textarea {
  background-color: #0f0f0f;
  color: #f4c3c3;

  margin-top: 10px;
  padding: 8px;
 
  border: 1px solid #f4c3c3;
  border-radius: 5px;
    resize: none;
    height: 20px;
   
}

.logo2{
    padding: 20px 20px;
  color: #f4c3c3;
    background-color: : #1a1a1a;
  border-color:#f4c3c3;
   border-style: solid;
    border-radius: 20px;
}








img {
    max-width: 100%;
   
    margin: 10px auto;
    border-radius: 10px;
}

a {
    color: #d62828;
    text-decoration: none;
    font-size: 14px;
}

button {
    background-color: #0f0f0f;
    border-style: solid;
    border-color:#f4c3c3;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
}
button:hover{
    color: #f4c3c3;
}
.logo{
    padding: 20px 20px;
  color: #664f4f;
    background-color:  #f4c3c3;
    border-radius: 20px;
}