body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header Styles */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    margin-top: 80px; /* Adjust this value based on the height of your header */
}


.logo {
    padding-right: 20px; /* Add padding to the right of the logo */
}

.logo img {
    height: 40px;
}

.main-nav {
    flex-grow: 1;
}

.main-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-right: 30px;
}

.main-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.main-nav ul li a img {
    height: 20px;
    margin-right: 8px;
}

.main-nav ul li a:hover {
    color: #007bff;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 20px;
    transition: border-color 0.3s;
}

.header-right input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

.header-icons a {
    margin-left: 10px;
}

.header-icons img {
    height: 24px;
    cursor: pointer;
}

/* Container and Section Styles */
.container {
    width: 98%;
    margin: 0 auto;
    padding: 20px;
}

.section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure headers within sections don't inherit section styles */
.section-header {
    font-size: 1.5em; /* Adjust the size to be smaller */
    color: #34495e; /* Keep the color consistent */
    font-weight: bold;
    margin-bottom: 20px;
    border: none; /* Ensure no borders are applied */
    background: none; /* Ensure no background is applied */
    padding: 0; /* Remove padding if any */
    margin-top: 0; /* Remove any margin that might be inherited */
}

/* Override potential inherited styles */
.section .section-header {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.button-container form {
    display: inline-block;
    margin: 0;
}

.button-container .button,
.button-container a {
    padding: 10px 15px;
    background-color: #FF4742; /* Original red button style */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: inline-block; /* Ensures all buttons behave like block elements */
    transition: background-color 0.3s;
    font-size: 14px; /* Ensure the font size is consistent */
    line-height: 1.5; /* Adjusts the button height for consistency */
    text-align: center;
}

.button-container .button:hover,
.button-container a:hover {
    background-color: #FFA07A; /* Lighter red for hover */
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    color: #34495e;
}

/* Form Styles */
.form-container {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.section {
    overflow: visible !important;
}



/* In your styles.css file */
.quote-container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
    margin: 20px 0; /* Optional: add some spacing above and below */
}

.columns {
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
    padding: 0 15px;
}

.email-preview {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    max-height: 400px;
    overflow-y: auto;
    width: 100% !important;
}


.tabs {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab-button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.section-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header-container .button {
    margin-left: 10px;
}

.requisition-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

    .file-drop-zone {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden; /* This will prevent scrollbars from appearing */
}


    .file-drop-zone.dragover {
        background-color: #f0f0f0;
        border-color: #007bff;
        overflow: hidden; /* This will prevent scrollbars from appearing */
    }

    .file-drop-zone p {
        margin: 0;
        padding: 0;
    }

    .file-content {
        margin-top: 20px;
        border: 1px solid #ccc;
        padding: 10px;
        max-height: 300px;
        overflow-y: auto;
    }

    #content-display {
        white-space: pre-wrap;
        wor

/* Styling for section containers to create visual separation */
.section-container {
    padding: 20px;
    margin-bottom: 40px; /* Increases gap between sections */
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.ql-editor {
    min-height: 200px;
    max-height: 500px;
    overflow-y: auto;
}

@media (min-width: 992px) {
    #richTextModal .modal-lg {
        max-width: 900px;
    }
}

.ql-toolbar.ql-snow {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.checkbox-item {
    margin: 0.5rem 0;
}

.checkbox-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    cursor: pointer;
    pointer-events: all;
}
.ql-checkbox {
    position: relative;
    width: 28px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ql-checkbox i {
    font-size: 14px;
}

.checkbox-item {
    margin: 0;  /* Remove the 0.5rem margin */
    padding: 0;
    line-height: 1.5;  /* Reduce line height */
}

.checkbox-item label {
    margin: 0;
    padding: 0;
}

.checkbox-text {
    margin-left: 0.5rem;  /* Add consistent spacing after checkbox */
}


  /* TipTap Editor Styles */
  .ProseMirror {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 200px;
  }

  .ProseMirror:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
  }

  /* Task list styles */
  .ProseMirror ul[data-type="taskList"] {
    list-style: none;
    padding: 0;
  }

  .ProseMirror ul[data-type="taskList"] li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5em;
  }

  .ProseMirror ul[data-type="taskList"] input[type="checkbox"] {
    margin-right: 0.5em;
    margin-top: 0.3em;
  }



<link rel="stylesheet" href="{{ url_for('static', filename='solid-colors.css') }}">