body {
    margin-top: 5%;
    background-color: #202020;
    text-align: center;
    color: white;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.accounts {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.addSection {
    margin-top: 5%;
}
.addSection .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.fancy-button {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ff5f6d, #ffc371);
    border: 1px solid black;
    border-radius: 50px;
    padding: 8px 20px 8px 12px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 66px;
    transition: 0.2s ease-out;
}
.fancy-button:not(.disabled):hover {
    scale: 110%;
    transition: 0.2s ease-in;
}
.fancy-button-active:not(.disabled):hover {
    scale: 110%;
    transition: 0.2s ease-in;
}

.fancy-button-active {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #00c896, #3cd3ad);
    border: 1px solid black;
    border-radius: 50px;
    padding: 8px 20px 8px 12px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 66px;
    transition: 0.2s ease-out;
}

.icon-container {
    background-color: #ff6a6a;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}
.icon-container-active {
    background-color: #00b386;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.icon-container img {
    width: 24px;
    height: 24px;
}
.icon-container-active img {
    width: 24px;
    height: 24px;
}

.button-text {
    font-size: 18px;
    color: black;
    font-weight: 600;
}
