@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Roboto:wght@500&display=swap');

:root {
    --main-color: #618c03;
    --main-color-hover: #63793c;
    --color2: #ffffff;
    --color1: white;
    --hover-color: #f0f1fa;
    --font-color: #245d1b;
    --input-border-color: #beb9b9;
    --color3: #ffb300;
    --error-color: red;
    --main-hover-color: #ebf6eb;
}

/* GLOBAL SETTINGS */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

table {
    border-collapse: collapse;
}


td {
    padding: 10px !important;
}

.wrapper {
    display: flex;
    flex-direction: row;
    min-height: 92vh;
}

.content {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    max-height: 100%;
    overflow: scroll;
    padding: 10px 17%;
    margin: 0 auto;
    line-height: 1.5;
    font-family: sans-serif;
}

.main-title-short {
    display: none;
}

.content-title-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.content-title {
    display: block;
    color: var(--main-color);
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    text-align: left;
    font-weight: bold;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px;
}
.pagination a {
    display: inline-block;
    padding: 10px;
    margin: 10px;
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.pagination div {
    display: inline-block;
    padding: 10px;
    margin: 10px;
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    background-color: var(--main-color);
}


.submit-button{
  cursor: pointer !important;
  margin: 10px auto !important;
  display: block;
  background-color: var(--main-color);
  color: white;
  padding: 8px !important;
}


.submit-button:hover{
  background-color: var(--main-color-hover);
}


.danger-button {
  cursor: pointer !important;
  margin: 10px auto !important;
  display: block;
  background-color: red;
  color: white;
  padding: 8px !important;
  border: none;
  font-weight: bold;
}

.danger-button:hover {
    background-color: #de0505;
}


.menu-for-mobile {
    display: none;
}


@media screen and (max-width: 900px) {
    .navbar {
        height: 80px;
    }

    .content {
        height: initial;
        padding: 10px 10%;
    }

    .pagination {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .pagination a {
        margin: 10px;
    }

    .wrapper {
        flex-direction: column;
    }

    .left-navbar {
        width: 30%;
    }

    .right-navbar ul {
        text-align: center;
    }

    .right-navbar ul li {
        margin: auto;
    }

    .content {
        min-height: calc(80vh - 80px);
    }

    .right-navbar > .menu {
        display: none;
    }

}