
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 */
}



.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;
}

.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 */

#contentBlockerModal {
    display: none; /* This will ensure the modal is not displayed */
    visibility: hidden; /* This will ensure the modal is not visible */
  }
  
.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Below the modal, above other content */
  }
  
  .modal-container {
    position: fixed; /* Fixed position */
    top: 50%; /* Start at half the height of the viewport */
    left: 0;
    right: 0;
    width: 100%; /* Full width */
    max-width: 500px; /* Adjust as needed */
    margin-left: auto; /* Center the modal */
    margin-right: auto; /* Center the modal */
    transform: translateY(-50%); /* Adjust vertical position */
    background: white;
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    z-index: 1001; /* Above the overlay */
    overflow-y: auto; /* Enable scrolling within the modal */
    max-height: 50vh; /* Take up to half the height of the viewport */
  }
  
  /* Additional styling for inputs and button inside the modal */
  .modal-input {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    width: calc(100% - 20px); /* Adjust input width */
    box-sizing: border-box;
  }
  
  .modal-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #007bff; /* Adjust button color as needed */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  body.modal-active {
    overflow: hidden; /* No scrolling on the body */
  }



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 ... */
