html {
    font-size: 16px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    height:100%;
}

header {
    width: 100%;
}

.top-left {
    background-color: #1F4165;
    display: flex;
    align-items: center;
    width: 12%;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    background-color: white;
    color: black;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 5px solid #BE205E;
}

.title {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.welcome {
    font-size: 14px;
    color: black;
    margin-right: 3%;
    white-space: nowrap;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Mobile styles */
@media (max-width: 767px) {
    html {
        font-size: 12px;
    }

    .top-left {
        display: none; /* Hide the logo on mobile */
    }

    .top-section {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .welcome {
        font-size: 12px;
        margin: 0 0 10px 0;
        white-space: normal;
    }

    .container {
        padding: 5px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    table {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
    }
}

/* Tablet styles */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
