.dark-blue{
    background-color: #1e2435;
}

.clickeable{
    cursor: pointer;
}

.floating-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1e2435;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.493);
    z-index: 1000;
}

.floating-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.floating-form input {
    margin-bottom: 10px;
    padding: 7px;
    font-size: 16px;
    border-radius: 10px;
}

.floating-form button {
    width: 50%;
    margin-top: 10px;
    padding: 4px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    background-color: #387ad1;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 8px;
    text-align: left;
}