#content-admin {
    white-space: nowrap;
}

.admin_sidebox {
    display: inline-block;
    width: var(--sidebar-width);
    height: 100%;
    margin: 0px;
    border: 0px solid black;
    padding: 0px;
    background: white;
    color: black;
    vertical-align: top;
    border-right: 1px solid black;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.2);
}

.admin_body {
    display: inline-block;
    padding: 20px;
    color: white;
}

.admin_sidebox_button_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.admin_sidebox_button {
    display: block;
    color: black;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    padding-left: 2px;
    border-left: 4px solid transparent;
}

.admin_sidebox_button:hover {
    text-decoration: underline;
}

.admin_sidebox_button.selected {
    border-left: 4px solid black;
}

.shipList {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.shipCard {
    border: 1px solid #444;
    background: white;
    color: black;
    padding: 12px;
    border-radius: 6px;
    width: 400px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.shipName {
    font-size: 1.2em;
    font-weight: bold;
}


.shipCard:hover {
    background: #e8e9ce;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    color: black
}
.user-table th, .user-table td {
    border: 1px solid #ccc;
    padding: 6px 10px;
    text-align: left;
}
.user-table th {
    background-color: #222;
    color: white;
}
.pagination-controls {
    display: flex;
    gap: 10px;
}
.pagination-controls button {
    padding: 6px 12px;
}