html {
  font-size: 14px;
}

header {
    padding: 0;
    margin: 0;
}

canvas {
    top: 0;
    left: 0;
    padding: 0;
    background-color: #fff; /* Set a background color for the canvas */
}

/* Style for the icon container */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.icon-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

/* Style for individual icons */
.icon {
    font-size: 36px;
    margin: 10px;
    cursor: pointer;
}

.main {
    width: 99.5%;
    height: calc(100vh - 65px);
    border: 0px solid black;
    padding: 0;
    margin: auto;
    position: relative;
}

.containerBroadcast {
    display: flex;
    justify-content: center;
    gap: 2px; /* Space between buttons */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000000;
    width: auto;
}

.containerMenu {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000000;
    /* Shadow effect */
    background: white; /* Ensure visibility */
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.button, .broadcast, .join, .scribe {
    padding: 5px;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    position: static; /* Remove absolute positioning */
}

.popup-content {
    display: none;
    background: rgba(245,245,245,1);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    text-align: center;
    padding: 0;
    padding-bottom: 40px;
    color: #fff;
    border: 1px solid lightgrey;
    overflow-y: auto;
    z-index: 1004;
}

.popup-scribe {
    display: none;
    background: rgba(245,245,245,1);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    padding: 0;
    border: 1px solid lightgrey;
    z-index: 1004;
    overflow-y: auto;
    box-sizing: border-box;
}

    .popup-scribe .ck-editor__editable {
        min-height: calc(80vh - 100px);
        box-sizing: border-box;
        overflow-y: auto;
        height: 100%;
    }

.pulse {
    animation: pulse-animation 1.5s infinite ease-in-out;
    transform-origin: center;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.popupLineSize {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.popupLineSize div {
    padding: 5px 10px;
    cursor: pointer;
}

.lineSize {
    border: none; /* Remove default borders */
    margin: 0; /* Remove any margin/padding */
    padding: 0; /* Remove padding */
}

.popupLineSize div:hover {
    background-color: #f0f0f0;
}
/* Color palette styling */
.color-option {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    margin: 3px;
    cursor: pointer;
    border: 1px solid #aaa;
}

    .color-option:hover {
        border: 2px solid #333;
    }

/* Custom color picker styling */
#customColorPicker {
    width: 40px;
    height: 30px;
    border: none;
    cursor: pointer;
    margin: 5px auto;
    display: block;
}

.menuIcon {
}


ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Use flexbox to display list items in a row */
    flex-wrap: wrap;
    margin-left: 30px;
}

li {
    white-space: nowrap;
    margin-right: 10px;
    padding: 5px;
    cursor: pointer
}

.point {
    color: red;
}

.ray {
    color: blue;
}

.segment {
    color: green;
}

.line {
    color: purple;
}

.circle {
    color: orange;
}

.label {
    font-weight: normal;
    color: black;
    float: left;
    margin-left: 10px;
}

