/* DR_MovementsApp – Site.css
   Matches the styling conventions of DR_TimesheetApp */

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #eee;
    background: #222;
}

.btn {
    background-color: #0078d7;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .btn:hover {
        background-color: #005a9e;
    }

/* Base table styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
}

    table th {
        background-color: #0078D4;
        color: white;
        padding: 8px;
        text-align: left;
        border-bottom: 2px solid #ccc;
    }

    table td {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }

    table tr:nth-child(even) {
        background-color: #444;
    }

    table tr:nth-child(odd) {
        background-color: #333;
    }

    table tr:hover {
        background-color: #0078D4;
    }

.success-message {
    display: block;
    background-color: #28a745;
    color: #fff;
    border: 2px solid #1e7e34;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
}

.username {
    font-weight: Bold;
    color: #0078D4;
    text-transform: capitalize;
    float: right;
}

/* Pager */
.gv-pager {
    padding-top: 12px;
    text-align: left;
}

.gv-pager a,
.gv-pager span {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    background-color: #0078d7;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    line-height: 1.4;
}

.gv-pager a:hover {
    background-color: #005a9e;
}

.gv-pager span {
    background-color: #005a9e;
    cursor: default;
    font-weight: 600;
}

/* Mobile overrides */
@media (max-width: 600px) {
    .btn {
        width: 100%;
        min-height: 44px;
    }
}
