body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
    overflow-y: auto;
}

.content {
    margin-top: 1rem;
    margin-bottom: 1rem;
    /*height: auto;*/
    /*max-height: 100vh;*/
    box-sizing: border-box;
}

/*.container {*/
/*    display: flex;*/
/*    flex: 1;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    width: 100%;*/
/*    padding: 20px;*/
/*    margin: 10px;*/
/*    overflow-y: auto;*/
/*    max-height: 100vh;*/
/*    border: 1px solid #0c0c0c;*/
/*}*/

.container-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.customer-info {
    padding: 5px;
    text-align: center;
    font-size: 40px;
    color: #555;
}

.job-info {
    padding: 5px;
    text-align: center;
    font-size: 30px;
    color: #555;
}

.title-row {
    padding: 5px;
    text-align: center;
}

.title-row p {
    font-size: 24px;
    color: #333;
}

.selection-row {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px;
}

.column {
    flex: 1;
    margin: 0 10px;
}

.column h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.login {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.login h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group label {
    margin-bottom: 5px;
    color: #555;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.btn-right {
    float: right;
}

.btn-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.btn-container {
    display: flex;
    justify-content: space-around;;
}

/*.table {*/
/*    width: 100%;*/
/*    background-color: #ffffff;*/
/*    padding: 20px;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
/*    padding: 10px;*/
/*}*/

.table-header {
    background-color: #007bff;
    color: #fff;
}

.table-row {
    border-bottom: 1px solid #ccc;
}

.table-cell {
    padding: 10px;
    width: 75%
}

.center-content {
    text-align: center;
}

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

.flex-container > div {
    flex: 1;
    margin-right: 10px;
}

.select-resource {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.action-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.assign-button {
    background-color: #008CBA;
}

.remove-button {
    background-color: #f44336;
}

.assign-button:hover {
    background-color: #007B9A;
}

.remove-button:hover {
    background-color: #da2e2e;
}

#messageBox {
    border: 1px solid black;
    padding: 10px;
    max-height: 100px; /* Maximum height */
    overflow: auto;
}
