.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* On top of everything else */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  }

  /* Close button styling */
  .close-button {
    border: none;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
    padding: 0; /* Remove any default padding */
  }
  .close-button img {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
  }
  .close-button:focus {
    outline: none;
  }
  /* Styling for the modal content */
  .modal.is-open {
    display: block; /* Show the modal */
  }

  .modal > div {
    position: relative; /* Changed to relative to correctly center */
    margin: auto; /* Center horizontally */
    background: #fff; /* White background */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding around content */
    max-width: 500px; /* Maximum width */
    width: 90%; /* Full width up to max-width */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Center vertically */
  }

  /* Styling for the modal header */
  .modal header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  /* Styling for the modal title */
  .modal h2 {
    margin: 0;
    font-size: 1.5em;
  }

  /* Styling for the close button */
  .modal button {
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1em;
  }



  body{
    
    background: black;
}

.iframe-container {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 1000px;
    height: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }
  .bottom-right-iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .minimize-button {
    position: absolute;
    top: -30px;
    right: 0;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }
  .minimize-button:hover {
    color: gray;
  }

input,textarea{
    outline: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
  
::-webkit-scrollbar-track {
    background: #aaaaaa; 
}
   
::-webkit-scrollbar-thumb {
    background: #444444; 
}
  
::-webkit-scrollbar-thumb:hover {
    background: #888888; 
}

.wallpaper{
    position: fixed;
    z-index: -10;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.context-menu-container{
    z-index: 99999999999999999999999999999999999999999;
    background: #00000000;
    top: 0px;
    left: 0px;
    position: fixed;
    height: 100%;
    width: 100%;
}

.context-menu{
    z-index: 1;
    background: #00000044;
    top: 0px;
    left: 0px;
    border-radius: 5px;
    border: #777777 solid 1px;
    position: fixed;
    height: 266px;
    width: 250px;
    box-shadow: 0px 0px 10px #220022;
}

.panel-activities:hover, .panel-notification:hover, .panel-status:hover, .panel-active-app:hover {
    background: #ffffff44;
    transition-duration: 0.2s;
}

.menu-searchbox{
    position: fixed;
    top: 45px;
    height: 28px;
    left: calc(50% - 110px);
    width: 298px;
    border-radius: 15px;
    background: #111111;
    border: #777777 solid 1px;
    display: grid;
    grid-template-columns: 35px auto;
    align-items: center;
}

.menu-searchbox  > input{
    padding: 0px;
    height: 28px;
    border: none;
    background: #111111;
    color: #ffffff;
    border-radius: 15px;
}

.menu-searchbox > img{
    filter: brightness(2);
    height: 24px;
    justify-self: center;
}