body {
    background-color: #161e27;
    color: #eee;
}

#calendar-container {

    display: flex;
    justify-content: center;

    margin-top: 50px;

}

#calendar-main {

    background-color: #67161e;
    display: flex;
    flex-direction: column;

    width: 1190px;
    min-height: 680px;

    padding: 10px;

    border-radius: 30px;
}

.calendar-week {

    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;

}

.calendar-day {

    background-color: #222244;

    width: 150px;
    height: 150px;

    margin: 10px;

    border-radius: 15px;

}

.empty-day {

    width: 150px;
    height: 150px;

    margin: 10px;

    background-color: #00000000;

}

#bsky-div {
    display: flex;
    flex-direction: column;
    background-color: #23395b;
    width: 400px;
    height: 600px;
    margin-right: 15px;
}

#bsky-login-btn {
    margin: auto;
    padding: 20px;
    background-color: #1185fe;
    border: none;
    border-radius: 25px;
}

#bsky-authed-div {
    display: flex;
    flex-direction: column;
    background-color: #23395b;
    width: 400px;
    height: 600px;
}