:root {
    --main-color: #5cbf77;
    --main-color-dark: green;
    --active-link-color: #71d98d;
    --group-text-color: #f35e20;
}

body {
    direction: rtl;
    font-family: "Times New Roman", Times, serif;
    font-size: 1rem;
    text-align: right;
}

/*Layout and Navigation*/

.topbar {
    height: 60px;
    background-color: var(--main-color);
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    border-bottom: 1px solid var(--main-color-dark);
}

.topbar-logo {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

    .topbar-logo img {
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }

.topbar-toggler {
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: white;
    border: 1px white solid;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .topbar-toggler span {
        display: block;
        margin-top: 2px;
        margin-bottom: 2px;
        width: 100%;
        height: 3px;
        position: relative;
        background: white;
        border-radius: 3px;
    }

.site {
    display: flex;
    height: calc(100vh - 60px);
    position: relative;
    padding: 0;
}

nav {
    width: 200px;
    height: 100%;
    position: absolute;
    overflow-y: auto;
    z-index: 100;
}

    nav ul {
        list-style-type: none;
        padding: 0;
    }

        nav ul li {
        }

            nav ul li a,
            nav ul button {
                display: block;
                padding: 6px 15px;
                color: white;
                text-decoration: none;
                font-weight: bold;
            }

                nav ul li a:hover,
                nav ul li a.active,
                nav ul button:hover{
                    background-color: var(--active-link-color);
                }
            
            nav ul button {
                background-color: transparent;
                border: none;
                outline:none;
                text-align: right
            }

.site main {
    margin-right: 200px;
    padding: 20px;
    overflow-y: auto;
    height: 100%;
    width:100%;
    flex-grow: 1;
}


@media screen and (max-width: 600px) {
    nav {
        width:80%;
        right: -100%;
        transition: right 0.5s;
    }

    .site main {
        margin-right: 0;
    }

    nav.show {
        right: 0;
    }

    .topbar-toggler {
        display: flex;
    }
}

/*End Layout and Navigation*/

.text-title {
    color: var(--group-text-color);
}

.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--main-color-dark);
    }

nav {
    background-color: var(--main-color);
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link, .button-link {
    font-weight: 600;
}

.work-period {
    margin: 0;
    margin-top: 0.5rem;
    padding: 1rem 0;
    border: 1px lightgray solid;
    border-radius: 0.5rem;
}

    .work-period button {
        width: 100%;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }


.engineer-info-table {
    border-collapse: collapse;
}

    .engineer-info-table th {
        color: var(--group-text-color);
        border-bottom: var(--group-text-color) solid 1px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .engineer-info-table td {
        padding: 0.5rem 0;
    }

    .engineer-info-table tr td:first-of-type {
        font-weight: bold;
        color: var(--main-color-dark);
    }

    .engineer-info-table tr td:last-of-type::before {
        content: ": ";
    }


.table-data {
}

    .table-data th {
        color: var(--group-text-color);
        border-bottom: 1px solid var(--group-text-color);
        padding: 5px 0;
    }

    .table-data td {
        padding: 5px;
    }

    .table-data.bordered td {
        border-top: lightgray solid 1px;
    }

    .table-data .group-row {
        color: var(--group-text-color);
        font-weight: bold;
        padding: 5px 0;
        text-align: center;
    }

    .table-data .first-row {
        border-top: solid lightgray 1px;
    }

    .table-data .second-row1 {
        border-bottom: solid lightgray 1px;
    }













.news-title {
    color: var(--group-text-color);
    border-bottom: var(--group-text-color) solid 1px;
}

.news-body {
    margin-bottom: 0;
}

.news-url {
    text-align: left;
}
/*# sourceMappingURL=site.css.map */
