body {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px; /* Base font size for body text */
    line-height: 1.6; /* Adjust line-height for readability */
}

/* Optional: Apply font to specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
}
h1 {
    font-size: 36px;
    font-weight: 700; /* Bold */
    margin-bottom: 0.5em; /* Space below heading */
}

h2 {
    font-size: 30px;
    font-weight: 700; /* Bold */
    margin-bottom: 0.5em; /* Space below heading */
}

h3 {
    font-size: 24px;
    font-weight: 700; /* Bold */
    margin-bottom: 0.5em; /* Space below heading */
}

h4 {
    font-size: 20px;
    font-weight: 700; /* Bold */
    margin-bottom: 0.5em; /* Space below heading */
}

h5 {
    font-size: 16px; /* Same as body text */
    font-weight: 700; /* Bold */
    margin-bottom: 0.5em; /* Space below heading */
}

h6 {
    font-size: 14px;
    font-weight: 700; /* Bold */
    margin-bottom: 0.
}
/* Styling for unvisited links */
a:link {
    color: #2d3142; /* Primary color for links */
    text-decoration: none; /* Optional: remove underline */
}

/* Styling for visited links to match unvisited links */
a:visited {
    color: #2d3142; /* Same color as unvisited links */
}

/* Styling for links on hover */
a:hover {
    color: #ef8354; /* Accent color or any color you prefer for hover */
}

/* Styling for links when active */
a:active {
    color: #4f5d75; /* Secondary color or any color you prefer for active state */
}

.table, .btn {
    font-family: 'Work Sans', sans-serif;
}
.cost-table {
    margin: 20px 0;
}

.cost-table table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table th, .cost-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.cost-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.cost-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cost-table tr:hover {
    background-color: #f1f1f1;
}
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #0073aa;
}

ul li a:hover {
    text-decoration: underline;
}
.profile-picture {
    width: 150px; /* Adjust the size as needed */
    height: 150px;
    object-fit: cover;
}

/* General Table Styles */
.table-my-tasks {
    width: 100%;
    border-collapse: collapse;
}

.table-my-tasks th, .table-my-tasks td {
    padding: 8px;
    border: 1px solid #ddd;
}

.table-my-tasks th {
    background-color: #f4f4f4; /* Light background for table headers */
    text-align: left; /* Align header text to the left */
}

/* Align table data to the left */
.table-my-tasks td {
    text-align: left; /* Default alignment for table cells */
}

/* Center align the status column */
.table-my-tasks .status-column {
    text-align: center; /* Center align status column */
}

/* Center align the CTA button */
.table-my-tasks .cta-column {
    text-align: center; /* Center align CTA column */
}

/* Optional: Style for status badges */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 2em;
    color: #fff;
}
.task-meta {
    padding: 24px;
    border: 1px solid lightgray;
    border-radius: 16px;
}
.back-to-home {
    margin: 48px 0px !important;
}

.back-to-home a.btn.btn-light {
    padding: 0;
    background-color: transparent !important;
    border: none !important;
}
.status-draft {
    background-color: gray;
}

.status-in-progress {
    background-color: yellow;
    color: black;
}

.status-bound {
    background-color: lightblue;
}

.status-completed {
    background-color: green;
}

/* Optional: Style for CTA buttons */
.cta-button {
    padding: 6px 12px;
    background-color: #ef8354; /* Example color */
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #d06e3a; /* Darker shade for hover effect */
}
/* General Table Styles */
.table-my-tasks {
    width: 100%;
    border-collapse: collapse;
}

.table-my-tasks th, .table-my-tasks td {
    padding: 8px;
    border: 1px solid #ddd;
}

.table-my-tasks th {
    background-color: #f4f4f4; /* Light background for table headers */
    text-align: left; /* Align header text to the left */
}

/* Align table data to the left */
.table-my-tasks td {
    text-align: left; /* Default alignment for table cells */
}

/* Center align the status column */
.table-my-tasks .status-column {
    text-align: center; /* Center align status column */
}

/* Center align the CTA button */
.table-my-tasks .cta-column {
    text-align: center; /* Center align CTA column */
}

/* Optional: Style for status badges */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
}

.status-draft {
    background-color: gray;
}

.status-in-progress {
    background-color: #ffc107;
    color: black;
}

.status-bound {
    background-color: #17A2B8;
}
span.status {
    padding: 8px 16px;
    border-radius: 2em;
    font-weight: 600;
    font-size: 80%;
    color: #FFF;
}
.status-completed {
    background-color: #28A745;
}
.table td, .table th {
    vertical-align: middle; /* Vertically center-aligns text in table cells */
}
/* Optional: Style for CTA buttons */
.cta-button {
    padding: 6px 12px;
    background-color: #ef8354; /* Example color */
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #d06e3a; /* Darker shade for hover effect */
}

/* Default table layout for larger screens */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.table th {
    background-color: #f8f9fa;
}
.btn-primary {
    color: #FFF;
    border: none;
}

.btn-primary:visited {
    color: #FFF;
}

.btn-primary:hover {
    background-color: #4f5d75;
}

a.btn {
    padding: 8px 32px;
}

.badge {
    font-size: 80%;
    padding: 8px 16px;
    border-radius: 3em;
    font-weight: 600;
}
.user-meta {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.user-meta img {
    max-width: 100%;
    border-radius: 50%;
    border: 2px solid #ccc;
}
.nav-link.active {
    text-decoration: underline;
    color: #000 !important;
    font-weight: 600;
}

.nav-tabs {
    margin: 0;
}

.nav-tabs li.nav-item {
    margin-right: 4px;
}

div#myTabContent {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.table td {
    background-color: #FFF;
}

/* Optionally, you can add some padding or border radius to the badges */
.badge {
    padding: 0.5em 0.75em;
    border-radius: 0.25rem;
}
header.bg-primary.text-white {
    margin-bottom: 64px;
}

.navbar-nav .nav-link {
    color: #FFF;
    text-decoration: none;
}
.navbar-nav {
    align-items: flex-end;
}
.header-menu {
    display: flex;
    align-items: center; /* Align items vertically in the center */
}
.header-menu .nav {
    margin-right: 15px; /* Adjust as needed */
}
.header-menu .btn {
    margin-left: auto; /* Push the logout button to the far right */
}
.footer {
    background-color: #ef8354; /* Accent color */
    margin-top: 64px;
}

.footer p {
    margin: 0;
}
.bg-primary {
    background-color: #2d3142 !important; /* Primary color */
}

/* Optionally, override text color if needed */
.text-white {
    color: #ffffff !important; /* White text color */
}
form#loginform > p {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

form#loginform {
    max-width: 400px;
}
.login-register-form {
    max-width: 600px;
    margin: auto;
}
form#accept-sow-form {
    margin-top: 48px;
    border-top: 1px solid;
    padding-top: 48px;
}

button#accept-sow-button {
    margin-top: 24px;
}
.toast {
    opacity: 1 !important;
    transition: opacity 0.5s ease-in-out;
}
.toast-container {
    top: 20px; /* Distance from the top */
    end: 20px; /* Distance from the right */
}
.bg-success {
    color: #FFF !important;
    border-radius: 8px;
}

.toast-body {
    padding: 1.5rem;
}
.task-meta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.task-meta-item {
    flex: 1 1;
    box-sizing: border-box;
}
.user-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.user-profile-table th,
.user-profile-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.user-profile-table th {
    background-color: #f2f2f2;
}

.msa-content {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.container {
    width: 80%;
    margin: 0 auto;
}
form#registration-form > .form-group {
    margin-bottom: 24px;
}
/* Card layout for mobile screens */
@media (max-width: 767.98px) {
    .task-cards {
        display: block;
    }

    .task-card {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 15px;
    }

    .task-card h3 {
        margin-top: 0;
    }

    .task-card p {
        margin: 5px 0;
    }

    .task-card .btn {
        margin-top: 10px;
    }

    table#cost-table {
        display: block;
        overflow: scroll;
    }
    #header-wrapper {
        flex-direction: column;
    }
}

