@import url('https://fonts.googleapis.com/css?family=Roboto:ital,wght@0,300;0,400;0,500;1,400&display=swap');

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    75% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

html,
body {
    background-color: #ECF0F5;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Roboto", Arial, sans-serif;
    min-width: 1000px;
}
.main {
    display:flex;
    height:100%;
}

.menu {
    box-shadow: 3px 0px 3px grey;
    background-color: #232D32;
    width: 250px;
    height: 100%;
    position: fixed;
}
.page {
    flex: 1;
    padding: 20px;
    margin-left: 250px;
}

.logo {
    padding: 20px;
    width: 240px;
    position: relative;
}
.logo-text {
    color: white;
}
.navbar.navbar-dark.bg-dark {
    display: none;
}

.active>.page-link, .page-link.active {
    background-color: #2f66ac;
    border-color: #2f66ac;
}
.clickable-card {
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

.clickable-card:hover {
    background-color: #f8f9fa38;
}

@media (max-width: 1290px) {

    .page {
        padding: 0;
        margin: 20px;
    }
    html, body {
        display: block;
        min-width: initial;
    }
    .main {
        display:block;
    }
    .buttons-menu {
        display:none;
    }
    .welcome {
        display: none;
    }
    .navbar.navbar-dark.bg-dark {
        display: block;
    }
    .bg-dark {
        background-color: #232d32 !important;
    }
    .bg-dark.p-4 a {
        width: 100%;
    }
    .bg-dark.p-4 button {
        width: 100%;
    }
    .menu {
        display: none;
    }

}
a {
    text-decoration: none;
    color: #2F66AC;
}

a:hover {
    text-decoration: dashed;
}

.bd-block {
    margin: 20px 0 0 0;
    padding: 20px;
    position: relative;
    background-color: white;
    border: solid lightgrey 1px;
    border-radius: 5px;
}
.buttons-menu .btn {
    border: 1px solid initial;
    width: 214px;
    margin: 0 0 0 20px;
}

.buttons-menu span .btn:last-child {
    margin: 0 0 0 20px;
}

.buttons-menu button:hover {
    border: 1px solid white;
}
.btn {
    background-color: #2F66AC;
    --bs-btn-border-color: #2F66AC;
    height: 40px;
}

.btn.white {
    background-color: transparent;
    color: white;
    border: 1px solid transparent;
}

.btn.white:hover,
.btn.white:active {
    border: 1px solid white;
    background-color: inherit;

}

.btn.blue {
    background-color: #2F66AC;
    border: 1px solid #2F66AC;
}

.btn.blue:hover,
.btn.blue:active {
    background-color: #2F66AC;
    border: 1px solid white;
}

.btn.darkblue {
    background-color: #2E3573;
    border: 1px solid #2E3573;
}

.btn.darkblue:hover,
.btn.darkblue:active {
    background-color: #2E3573;
    border: 1px solid white;
}

.btn.red {
    background-color: #F83B3B;
    border: 1px solid #F83B3B;
}

.btn.red:hover,
.btn.red:active {
    background-color: #F83B3B;
    border: 1px solid white;
}

.btn.green {
    background-color: #008000;
    border: 1px solid #008000;
}

.btn.green:hover,
.btn.green:active {
    background-color: #008000;
    border: 1px solid white;
}

.btn-close {
    --bs-btn-close-focus-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .25);
}

.btn:hover {
    background-color: #2E3573;
}



input[type="text"] {
    border: 1px solid #dee2e6;
}

input[type="text"]:focus {
    outline-color: #2F66AC;
    border-width: 1px;
    border-color: #2F66AC;

}

input[type="text"]:focus-visible {

    outline-color: #2F66AC;
    border-width: 1px;
    border-color: #2F66AC;

}
.square-card {
    height: 100%;
}

.square-card .card-content {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-buttons {
    display: flex;
    gap: 0;
}

.action-buttons button {
    width: 50%;
    border-radius: 0;
}