* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
    text-decoration: none;
    color: #4d4d4d;
}

.navbar1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    background-color: rgb(44, 44, 44);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.navbar-brand2 {
    margin-left: 30px;
    color: rgb(230, 230, 230);
    font-size: 30px;
    margin-right: auto;
    font-weight: 900;
}

.navbar-li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-right: 50px;
}

.navbar-li div {
    color: rgb(230, 230, 230);
    margin-right: 15px;
    padding: 5px 15px;
    font-size: 21px;
    font-weight: 900;
    transition: background-color 0.4s;
}

.active2 {
    cursor: pointer;
}

.active2:hover {
    background-color: rgba(85, 85, 85, 0.6);
}

.disabled2 {
    opacity: 0.5;
    cursor: default;
}

.popup {
    top: -700px;
    opacity: 0;
    visibility: hidden;
    width: 40%;
    left: 50%;
    margin-left: auto;
    margin-right: auto;

    position: fixed;
    padding: 50px;
    background: transparent;
    border: 2x solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
    transform: translate(-50%, -50%);

    z-index: 4;
    transition: 0.4s;
}

.open-popup {
    top: 50%;
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 0.8);
}

.blurBG {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    background: transparent;
    backdrop-filter: blur(5px);
    height: 100%;
    width: 100%;
    z-index: 3;
    transition: 0.4s;
}

.open-BG {
    opacity: 1;
    visibility: visible;
}

.header3 {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 7px 7px 7px rgba(0, 0, 0, 0.2);
}

.input_text {
    width: 100%;
    margin-bottom: 15px;
    background-color: #ffffff82;
    border: 1px solid black;
    padding: 5px;
    padding-left: 15px;
}

.input_submit {
    width: 100%;
    border: 0;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 5px;
    font-weight: 900;
    color: rgb(230, 230, 230);
    background-color: rgb(63, 63, 63);
    cursor: pointer;
}

.table2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
}

.table2 th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    border-bottom: solid 1px black;
    color: rgb(230, 230, 230);
    background-color: rgb(112, 112, 112);
    font-weight: 900;
}

.table2 tr,
.table2 th {
    width: fit-content;
    text-align: center;
}

.table2 tr {
    height: 50px;
}

.tablesharp {
    text-wrap: nowrap;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.container1 {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding-bottom: 50px;
}

.smallcontainer1 {
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: solid 1px black;
}

.small{
    padding: 25px;
}

.add1 {
    width: fit-content;
    padding: 5px 10px;
    font-size: 18px;
    border: 1px solid rgb(63, 63, 63);
    margin-bottom: 7px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 23px;
}

.add1:hover,
.button1:hover {
    transition: 0.4s;
    background-color: rgba(0, 0, 0, 0.05);
}

.button1 {
    width: fit-content;
    padding: 4px 10px;
    border: 1px solid rgb(63, 63, 63);
    display: inline;
    cursor: pointer;
}

.search {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    font-size: 25px;
}