/* source-care-coordination-styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

h1 {
    text-align: center;
    color: #333;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 0px;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

textarea:focus {
    outline: none;
    border-color: #007bff; /* Optional: Change border color on focus for better visibility */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Optional: Add a subtle shadow on focus */
}

#results {
    margin-top: 5px;
    padding: 5px;
    background-color: #f7f7f7;
    border-radius: 4px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

.result-section {
    margin-bottom: 20px;
}

.result-section p {
    margin: 10px 0;
}

strong {
    color: #555;
}

#settingsHeader {
    font-size: 16px; /* Match the size of other text */
    text-decoration: underline; /* Underline the text */
    text-align: left; /* Align text to the left */
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #000; /* Visible cell lines with black borders */
    padding: 4px; /* Reduced padding from 8px to 4px */
    text-align: center;
    font-size: 14px; /* Uniform font size for all cells */
    font-weight: normal; /* Remove bold styling */
}

th {
    background-color: #cccccc; /* Change header background to gray */
    color: #000; /* Change header text color to black */
}

#insulinDoseTable tbody td {
    /* All table body cells have the same font size and weight */
    font-size: 14px;
    font-weight: normal;
}

tfoot td {
    background-color: #f1f1f1;
    font-weight: normal; /* Remove bold styling */
    font-size: 12px; /* Reduced font size from 14px to 12px */
}