/* site.css */
header {
    background-color: #f8f9fa;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    nav ul li {
        display: inline;
        margin-right: 20px;
    }

.login-box-container {
    position: absolute;
    top: 10px;
    right: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

    .table th, .table td {
        padding: 8px;
        border: 1px solid #ddd;
    }

.buttons {
    margin-top: 10px;
}

    .buttons button, .buttons a {
        margin-right: 10px;
    }

/* Login box container in the header */
.login-box-container {
    position: absolute;
    top: 10px; /* Slight margin from the top */
    right: 20px; /* Slight margin from the right */
    z-index: 1050; /* Ensures it stays on top of other elements */
}

/* Styling for the login box */
.login-box {
    width: 280px; /* Fixed width for the box */
    padding: 15px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

    /* Styling form controls inside the login box */
    .login-box .form-control {
        border-radius: 0.25rem;
    }

    .login-box p {
        margin-bottom: 0;
    }

    /* Styling for the submit button */
    .login-box button[type="submit"] {
        width: 100%;
    }

    /* Styling logout button */
    .login-box .btn-link {
        padding: 0;
        font-size: 14px;
        color: #007bff;
    }

.sort-arrow {
    margin-left: 5px;
    font-size: 16px;
    color: #555;
    vertical-align: middle; /* Align with text */
}

th {
    cursor: pointer;
}

    th:hover {
        background-color: #f0f0f0;
    }

/*Clickable fields on Apilogs*/


