body {
    font-family: 'Prompt', sans-serif; /* Added new font */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.footer {
    flex-shrink: 0;
}

.table-custom-font-size {
    font-size: 0.8rem; /* Adjust as needed */
}

/* Styles for contract status dropdown */
.contract-status-select.status-pending {
    background-color: #ffc107; /* Bootstrap yellow/warning color */
    color: #343a40; /* Dark text for contrast */
    border-color: #ffc107;
}

.contract-status-select.status-signed {
    background-color: #28a745; /* Bootstrap green/success color */
    color: #fff; /* White text for contrast */
    border-color: #28a745;
}

/* Bottom Navigation Bar for Mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 1030; /* Higher than navbar */
    padding: 5px 0;
    border-top: 1px solid #e9ecef;
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d; /* Muted text color */
    font-size: 0.75rem;
    padding: 5px;
    flex-grow: 1;
    transition: color 0.2s;
}
.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #0d6efd; /* Bootstrap primary color */
}
.bottom-nav-spacer {
    height: 70px; /* Adjust to match the height of the bottom-nav */
}

.navbar-profile-img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #6c757d;
}

/* Style for readonly form controls */
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; /* Ensure it's not faded */
}