﻿
.button_blue {
    display: inline-block;
    outline: none;
    background-color: white;
    color: #4a27ef;
    border: 1px solid #cccccc;
    border-radius: 22px;
    min-width: 180px;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal; 
}

.button_blue:hover {
    background-color: #eee;
}

.button_blue:active {
    background-color: #ddd;
}

.button_white {
    display: inline-block;
    outline: none;
    background-color: white;
    color: black;
    border: 1px solid #cccccc;
    border-radius: 22px;
    min-width: 180px;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
}

.button_white:hover {
    background-color: #f4f4f4;
}

.button_white:active {
    background-color: #f4f4f4;
}

.button_black {
    display: inline-block;
    outline: none;
    background-color: black;
    color: white;
    border: 1px solid #cccccc;
    border-radius: 22px;
    min-width: 180px;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
}

.button_black:hover {
    background-color: #1c1c1c;
}

.button_black:active {
    background-color: #1c1c1c;
}

.karoot_table { 
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal; 
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
.karoot_table th {
    height: 35px;
}
.karoot_table tr {
    height: 90px;
    vertical-align: middle;
}

.karoot_navigation {
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal; 
    letter-spacing: normal;
    text-align: left;
}

.confirmation_modal {
    border-radius: 25px;
    text-align: center;
    padding: 30px 30px 30px 30px;
}
.confirmation_modal_header {
    border: none;
    display: block; 
    font-size: 46px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
}
.confirmation_modal_footer_body {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
}
.confirmation_modal_footer {
    border: none;
    text-align: center;
    justify-content: center;
}
.confirmation_modal_footer .button_white, .confirmation_modal_footer .button_black {
    min-width: 340px;
    font-size: 28px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

    .pagination-controls button {
        background-color: white;
        border: 1px solid #707070;
        color: black;
        padding: 5px 10px;
        margin: 0 5px;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        font-family:"AeonikPro Regular";
        width:40px;
        height:40px;
    }

        .pagination-controls button:hover {
            background-color: white;
            color: black;
        }

        .pagination-controls button.active {
            background-color: white;
            color: #4a27ef;
            font-weight: bold;
        }

        .pagination-controls button:disabled {
            background-color: white;
            color: grey;
            cursor: not-allowed; 
        }

    .pagination-controls select {
        margin-right: 15px;
        padding: 5px;
        border-radius: 8px;
        border: 1px solid #dee2e6;
        height: 40px;
    }

    .pagination-controls label {
        margin-right: 5px;
        font-weight: bold;
    }
     