.CustomButtons {
    background-color: #1ABC9C;
    color: #ffffff;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#logoutbtn {
    background-color: #db1d1d;
    width: 100%;
    color: #ffffff;
    border: none;
    padding: 10px 0px 10px 0px;
    font-size: 2rem;
    cursor:pointer;
}
.register-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: none;
    color: #1ABC9C;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.register-btn:hover {
    background: #16A085;
    color: white;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #1ABC9C;
    border: none;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.login-btn:hover {
    background: #16A085;
}
#GoToDash,
#GoToHistory,
#toggleView,
#toggleByDay {
    width: 100%;
    background-color: #1ABC9C;
    color: #ffffff;
    border: none;
    padding: 10px 0;
    font-size: 2rem;
    transition: background-color 0.3s, color 0.3s; 
}
#GoToDash:hover,
#GoToHistory:hover,
#toggleView:hover,
#toggleByDay:hover {
    cursor: pointer;
    background-color: #159a80; 
}
body.dark-mode #GoToDash,
body.dark-mode #GoToHistory,
body.dark-mode #toggleView,
body.dark-mode #toggleByDay {
    background-color: #064438;
    color: #ffffff;
}
body.dark-mode #GoToDash:hover,
body.dark-mode #GoToHistory:hover,
body.dark-mode #toggleView:hover,
body.dark-mode #toggleByDay:hover {
    background-color: #0b6653; 
    cursor: pointer;
}