.ws-main {
    display: flex;
    flex-direction: column;
    margin: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.ws-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

.add-button {
    text-decoration: none;
    border: 1px solid #2271b1;
    padding: 10px;
    background: #2271b1;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.cancel-button {
    text-decoration: none;
    border: 1px solid #2271b1;
    padding: 10px;
    background: white;
    color: #2271b1;
    font-weight: 700;
    font-size: 14px;
}

.submit-button {
    text-decoration: none;
    border: 1px solid #2271b1;
    padding: 10px;
    background: #2271b1;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.add-button:hover {
    color: #2271b1;
    background: white;
}

.submit-button:hover {
    color: #2271b1;
    background: white;
}

.ws-title {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 50px;
}

.ws-form {
    width: 40%;
}

.ws-form label, .ws-form legend {
    font-size: 16px;
    width: 30%;
}

.ws-form input, .ws-form textarea, .ws-form fieldset, .image-load {
    flex-grow: 1;
}

.image-load img {
    max-height: 100px;
}

.ws-form .form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ws-form .form-footer, .content-footer {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.no_result {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}

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

.ws-table table tbody tr:nth-child(2n + 1) {
    background: lavender;
}

.ws-table table thead {
    font-size: 16px;
}

.ws-table table thead th {
    padding: 10px;
    padding-bottom: 30px;
}

.ws-table table tbody {
    text-align: center;
}

.ws-table table tbody tr td, .ws-table table tbody tr th{
    padding-bottom: 15px;
    padding-top: 15px;
    font-size: 14px;
}

.actions a {
    margin-left: 5px;
    margin-right: 5px;
}

.ws-content {
    display: flex;
    flex-direction: column;
}

.ws-content .title {
    font-size: 16px;
    font-weight: 700;
}

.image-medium {
    max-height: 100px;
}