body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
.login-title {
    text-align: center;
    color: #07569e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}
#logosvg{
    display: block;
    width: 250px;
    max-width: 80%;
    margin: 0 auto 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}
.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #07569e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover {
    background-color: #05407a;
}
.alert-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #c62828;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.pagination a, .pagination span {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #07569e;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}
.pagination .current {
    background-color: #07569e;
    color: #fff;
    border-color: #07569e;
    font-weight: bold;
    pointer-events: none;
}
.pagination a:hover {
    background-color: #e3f2fd;
}
.log-url {
    word-break: break-all;
    max-width: 300px;
    font-size: 0.9em;
}
.log-ua {
    word-break: break-all;
    max-width: 250px;
    font-size: 0.8em;
    color: #666;
}
.log-time {
    font-size: 0.9em;
    white-space: nowrap;
}