#testingPage h1 {
    margin-bottom: 4%;
}

#testingPage {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testButtons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 23%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 2.5%;
    padding-top: 3%;
    padding-bottom: 3%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition lasting 0.2 seconds*/
}

.testButtons:hover {
    transform: translateY(-2px); /* Moves the element up by 2 pixels */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testButtons button {
    background-color: #2c539a;
    color: white;
    margin: 2.5%;
    border-radius: 6px;
    width: 75%;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.testButtons button:hover, #clearLocal:hover {
    background-color: #013168;
}

.testButtons button:active {
    transform: scale(0.98);
}

#leftDiv {
    position: fixed;
    top: 80px;
    left: 2%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#testingInfo {
    /*z-index: 1000;*/
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#testingInfo p {
    margin: 5px 0;
    font-size: 14px;
    color: #013168;
}

#testingInfo p:first-child {
    margin-bottom: 8px;
}

#clearLocal {
    background-color: #2c539a;
    color: white;
    margin-top: 15px;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#clearLocal:disabled {
    background-color: #b7c5dd;
}

#testingHeader {
    position: fixed;
    top: 80px;
    right: 2%;
    /*z-index: 1000;*/
}

#testingHeader button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

#testingHeader button:hover {
    background-color: #f5f5f5;
}

#testingHeader img {
    width: 24px;
    height: 24px;
}

#toggleButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

#toggleButton:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#toggleButton img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

#toggleButton img#sun {
    position: absolute;
    opacity: 0;
}

#toggleButton img#moon {
    position: relative;
    opacity: 1;
}