.header {
  background: #000;
  color: #fff;
}

.subheader {
  height: 46px;
  line-height: 46px;
  padding-left: 70px;
  padding-right: 70px;
  color: white;
}

.subheader a {
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Inherits the text color from the subheader */
  background-color: transparent; /* No background color by default */
  padding: 2px 10px; /* Adjust horizontal padding for oval width */
  margin-right: -15px; /* Spacing between items */
  border: none; /* No borders */
  cursor: pointer; /* Changes the cursor to indicate clickability */
  display: inline-block; /* Aligns items in line */
  transition: background-color 0.3s, border-radius 0.3s; /* Smooth transitions */
  border-radius: 0; /* No rounded corners initially */
  line-height: 26px; /* Adjust line height to control the total height including padding */
}

.subheader a:hover {
  background-color: #444; /* Dark gray background on hover */
  border-radius: 23px; /* Adjusted border-radius for a perfect oval */
}

.subheader .title {
  font-size: 24px;
  font-weight: 500;
}

.subheaderD {
  height: 50px;
  line-height: 45px;
  padding-left: 70px;
  padding-right: 70px;
  color: white;
}

.subheaderD a {
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Inherits the text color from the subheader */
  background-color: transparent; /* No background color by default */
  padding: 2px 10px; /* Adjust horizontal padding for oval width */
  margin-right: -15px; /* Spacing between items */
  border: none; /* No borders */
  cursor: pointer; /* Changes the cursor to indicate clickability */
  display: inline-block; /* Aligns items in line */
  transition: background-color 0.3s, border-radius 0.3s; /* Smooth transitions */
  border-radius: 0; /* No rounded corners initially */
  line-height: 26px; /* Adjust line height to control the total height including padding */
}

.subheaderD a:hover {
  background-color: #444; /* Dark gray background on hover */
  border-radius: 23px; /* Adjusted border-radius for a perfect oval */
}

.subheaderD .title {
  font-size: 24px;
  font-weight: 500;
}

body {
  background-color: #262a4d;
  color: #fff;
}



input, select, button {
  background-color: #333;
  color: #fff;
}

.footer button {
  border-color: #fff;
  color: #fff;
}

/* Footer specific styling */
.footer button#butClear {
  font-size: 16px; /* Slightly larger text for footer button */
  padding: 8px 16px; /* Slightly less padding for footer button */
}

.footer button:hover {
  background-color: #fff;
  color: #333;
}

.remix button {
  border-color: #fff;
  color: #fff;
}

.remix button:hover {
  background-color: #fff;
}




.notSupported, .notSupported a {
  background-color: red;
  color: white;
}

.firmware {
  border-color: #fff;
  color: #fff;
}

.firmware:focus,
.firmware:hover {
  background-color: #fff;
  color: #333;
}

.firmware:disabled {
  color: #ccc;
  border-color: #ccc;
}

.firmware:disabled:hover {
  background-color: #fff;
}

input {
  background-color: #fff;
  color: #333;
}

#commands .buttons button:disabled,
#commands .buttons button:disabled:hover{
  border-color: #999;
  background-color: #888;
  color: #ccc;
}



.progress-bar {
  border-color: #ff9999;
}
.terminal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #cecece;
  font-family: 'proxima-nova', sans-serif;
  padding: 15px;
  padding-top: 13px;
  box-sizing: border-box;
}

.disconnect-icon {
    color: #FC9999; /* Light red color for disconnect icon */
}

.red-icon {
    color: #FC9999; /* Your specified red color */
}

.connection-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  box-sizing: border-box;
  margin-left: 39px;  /* Moves the element to the right */
  margin-top: 2px;
}

.green-icon {
    color: #B3FFCC;
}

.red-icon {
    color: #FC9999;
}


.connection-controls-left label {
  position: absolute;
  transform: translateY(-100%); 
  color: #FFFFFF;
  font-family: monospace;
  font-size: 1rem;
  margin: 0;
}

.connection-controls-left,
.connection-controls-right {
  display: flex;
  align-items: center;
}

a {
        color: #03a9f4;
      }

.terminal-output {
    flex-grow: 1;
    display: flex;
    background-color: #000;
    color: #cecece;
    height: calc(100vh - 215px);  /* Adjust the subtracted value based on actual header/footer size */
    padding: 5px;
    overflow-y: scroll;  /* Allows scrolling within the element */
    overflow-x: auto;  /* Allows horizontal scrolling if content overflows */
    margin-top: -4px;  /* Adjust or remove if causing issues */
    margin-bottom: 15px;
    white-space: pre;
    word-wrap: break-word;
    overflow-wrap: break-word;
}






.terminal-input-row {
  display: flex;
  align-items: center;
}

.terminal-input {
  flex-grow: 1;
  background-color: #252525;
  color: #FFFFFF;
  padding: 5px;
  border-radius: 0;
  border: 2px solid #111111;
  margin-right: 10px;
}

.dropdown-container {
    margin-bottom: 0px; 
    margin-right: 0px;
}