﻿

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.login-btn button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
@media (max-width: 1080px) {
    .login-btn button {
        font-size: 10px;
    }
    .header {
        display:block;
        padding: 10px 20px;
        background-color: #f8f9fa;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }
    .logo img {
        height: 50px;
        width: 100%;
    }
    .btn{
        font-size: 10px;
        margin-top: 5px;
        text-align: center;
    }
    h4{
        font-size: 14px;
    }
    body{
        font-size: 10px;
    }
    .pagination{
        display:block;
        text-align: center;
    }
}
    .login-btn button:hover {
        background-color: #0056b3;
    }