
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f8fa;
}


.logo, #logoImage {
position: fixed;
top: 10px;
left: 10px;
height: 40px; /* Smaller height */
width: 40px; /* Smaller width, adjust as needed */
border-radius: 50px; /* Rounded corners */
object-fit: cover; /* Ensures the image is nicely fitted */
}

#videoPlayer {
    border: 2px solid #646464; /* Example: Green border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
    max-width: 70%;
    margin: 0 auto; 
}


.responsive-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    padding-top: 25px;
    height: 0;
    z-index: 10; /* Example value, adjust as needed */

}

.responsive-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Example value, adjust as needed */

}


.action-button {
    position: fixed; /* Makes the button float */
    top: 20px; /* Distance from the top of the page */
    right: 20px; /* Distance from the right of the page */
    background-color: #2c3e50;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000; /* Example value, adjust as needed */

}

.action-button:hover {
    background-color: #1a2836;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.document-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
/* Custom modal styles inspired by Tailwind */
.modal-background {
    background-color: #fff; /* Solid white background */
}
.modal-container {
display: none;
    background-color: #ffffff;
    border-radius: 0.5rem; /* Rounded corners */
    padding: 2rem; /* Padding around the form */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Tailwind-like box shadow */
}
.modal-input {
    border: 1px solid #d2d6dc; /* Border color */
    border-radius: 0.375rem; /* Rounded corners */
    padding: 0.5rem 1rem; /* Padding inside the input */
    margin-bottom: 1rem; /* Margin between inputs */
    width: calc(100% - 2rem); /* Full width minus padding */
    box-sizing: border-box; /* Border-box sizing */
}
.modal-button {
    background-color: #4c51bf; /* Button background color */
    color: #fff; /* Button text color */
    padding: 0.5rem 1rem; /* Button padding */
    border-radius: 0.375rem; /* Button border radius */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    width: 100%; /* Full width button */
    margin-top: 1rem; /* Margin on top of the button */
}
.modal-button:hover {
    background-color: #434190; /* Darker background on hover */
}
h1 {
font-size: 4rem;
color: rgba(17, 17, 17, 1);
margin: 3rem 0;
font-weight: 900;
}

h2 {
font-size: 3rem;
color: rgba(17,17,17,1);
margin: 2.5rem 0;
font-weight: 800;
}

h3 {
font-size: 2rem;
color: rgba(17, 17, 17, 1);
margin: 2rem 0;
font-weight: 700;
}

h4 {
font-size: 1.5rem;
color: rgba(17, 17, 17, 1);
margin: 1.5rem 0;
font-weight: 600;
}

h5 {
font-size: 1rem;
color: rgba(17, 17, 17, 1);
margin: 1rem 0;
font-weight: 500;
}

h6 {
font-size: 1rem;
color: rgba(17, 17, 17, 1);
margin: 1rem 0;
font-weight: 500;
}

p {
font-size: 14px;
color: #252525;
font-family: var(--font_default);
margin: 1rem 0;
font-weight: 400;
}

/* ... additional styles for lists, tables, links, etc. ... */

ul[data-type="taskList"] {
list-style: none;
padding: 0;
}

ul[data-type="taskList"] p {
margin: 0;
}

ul[data-type="taskList"] li {
display: flex;
}

ul[data-type="taskList"] li > label {
flex: 0 0 auto;
margin-right: 0.5rem;
user-select: none;
}

ul[data-type="taskList"] li > div {
flex: 1 1 auto;
}

blockquote {
font-family: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
line-height: inherit;
color: rgb(20 20 20);
visibility: visible;
word-wrap: break-word;
font-variant-ligatures: none;
font-feature-settings: "liga" 0;
box-sizing: border-box;
border: 0 solid #e5e5e5;
position: relative;
display: flex;
gap: 0.5rem;
border-radius: 0.5rem;
padding: 1rem;
background-color: rgba(20, 20, 20, 0.1);
}



table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
text-indent: 0;
}

th,
td {
padding: 0 1rem;
text-align: start;
border-bottom: 1px solid rgba(0,0,0,1);
}

th {
font-weight: 800;
text-align: left;
background: rgba(0,0,0,1);
}

th * {
color: rgba(255,255,255,1);
font-weight: 800; 
}

tr:nth-of-type(odd) {
background: rgba(238,238,238,1);
}

/* ... additional styles for selected cells, resize handles, etc. ... */

a {
text-decoration: underline;
cursor: pointer;
}

a:link {
color: rgba(79, 70, 229, 1);
}

a:visited {
color: rgba(75, 85, 99, 1);
}

a:hover {
color: rgba(147, 51, 234, 1);
}

iframe {
width: 100%;
}

img {
width: 100%;
}

/* ... additional styles for collaboration cursors ... */
