/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


*/

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');


body {
    background-color: #050505;
    font-family: 'figtree', sans-serif;
    color: white;
}

.whiteboardView .button-initial {
    background-color: white; /* White background */
    color: black;           /* Black text */
    border-radius: 10px;  
    font-weight: 400; 
    font-size: 12; 
    padding-left: 11vh;
    padding-right: 11vh;
    text-align: center;
    text-transform: none /* Rounded corners, adjust as needed */
  }
  
.whiteboardView .button-active {
    background-color: #66C097; /* Green background */
    color: #fff;    
    font-weight: 400; 
    font-size: 12; 
    padding-left: 10vh;
    padding-right: 10vh;        /* Black text */
    border-radius: 10px;  
    text-transform: none /* Rounded corners, adjust as needed */    /* Rounded corners, adjust as needed */
}

.whiteboardView .button-active-mute {
  background-color: #66C097; /* Green background */
  color: #fff;    
  font-weight: 400; 
  font-size: 12; 
  padding-left: 10vh;
  padding-right: 10vh;        /* Black text */
  border-radius: 10px;  
  margin-left: 3vh;
  text-transform: none /* Rounded corners, adjust as needed */    /* Rounded corners, adjust as needed */
}

.whiteboardView .button-error {
  background-color: #FF0000; /* Error red background */
  color: #fff;    
  font-weight: 400;
  margin-left: 3vh; 
  font-size: 12; 
  padding-left: 10vh;
  padding-right: 10vh;        /* Black text */
  border-radius: 10px;  
  text-transform: none /* Rounded corners, adjust as needed */    /* Rounded corners, adjust as needed */
}

.whiteboardView .syncWhiteboard {
    background-color: black; /* White background */
    color: white;          /* Black text */
    border-radius: 8px; 
    border-color: #fff;
    font-weight: 400; 
    font-size: 12; 
    padding-left: 10vh;
    padding-right: 10vh;  
    margin-top: 1px;      /* Black text */
    border-radius: 10px;  
    text-transform: none /* Rounded corners, adjust as needed */
}


.whiteboardView .button-waitlist {
  background-color: black; /* White background */
  color: white;           /* Black text */
  border-radius: 10px;  
  font-weight: 400; 
  font-size: 12; 
  padding-left: 12vh;
  padding-right: 12vh;
  text-align: center;
  text-transform: none; /* Rounded corners, adjust as needed */
  border: 1px solid #fff;
  margin-left: 3vh; 
}

.whiteboardView .button-sync {
  background-color: white; /* White background */
  color: black;           /* Black text */
  border-radius: 10px;  
  font-weight: 400; 
  font-size: 12; 
  padding-left: 12vh;
  padding-right: 12vh;
  text-align: center;
  text-transform: none; /* Rounded corners, adjust as needed */
  border: 1px solid #fff;
  margin-left: 3vh; 
}

.headerModified {
    color:#fff;
    text-align: left;
    padding-left: 30px; 
    font-weight: 400;
}

.excalidraw-custom .excalidraw.theme--dark {
  --color-primary:#888;
  min-height: 80vh;
  border-radius: 4px;
}

#chat::-webkit-scrollbar {
  width: 10px;
  background: #1E1E1E;
}

#chat::-webkit-scrollbar-track {
  background: #1E1E1E; 
}

#chat::-webkit-scrollbar-thumb {
  background: #888; 
}

#chat::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

  /* Testing Excalidraw override  .Excalidraw {
    --color-primary: blue!important;
    --color-primary-darker: blue !important;
    --color-primary-darkest:blue !important;
    --color-primary-light: blue !important;
    --default-bg-color: blue !important;
    min-height: 60vh;
    border: 5px solid yellow; 
} */

.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-regular-italic {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-bold-italic {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: italic;
}
