.contentArea {
    position: relative;

    width: 100%;
    height: auto;

    padding: 5%;
    box-sizing: border-box;
}

.header {
    position: relative;

    width: 100%;
    height: auto;

    padding: 10px;
    box-sizing: border-box;

    background-color: var(--container-lowest);
    border-radius: 10px;

    margin-bottom: 20px;

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.headerLogo {
    position: relative;

    width: 40px;
    height: 40px;

    fill: var(--on-surface);
}

.headerText {
    position: relative;

    font-family: "Archivo";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);
}

.settingsButton {
    position: absolute;

    right: 15px;

    width: 35px;
    height: 35px;

    background-color: var(--container);
    border-radius: 10px;

    padding: 5px;
    box-sizing: border-box;

    fill: var(--on-surface);

    display: flex;
    align-items: center;
    justify-content: center;
}

.contentBubble {
    position: relative;

    width: 100%;
    height: auto;

    padding: 30px;
    box-sizing: border-box;

    background-color: var(--container);
    border-radius: 20px;

    margin-bottom: 10px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

    overflow: hidden;
}

.totalAmount {
    position: relative;

    font-family: "Archivo";
    font-weight: 800;
    font-size: 50px;
    color: var(--on-surface);
}

.totalSubline {
     position: relative;

    font-family: "Archivo";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);
}

.dbHeader {
    position: relative;

    width: 95%;
    height: auto;
    
    padding: 10px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: start
}

.dbH_text {
    position: relative;

    width: 50%;
    height: auto;

    font-family: "Archivo";
    font-weight: 400;
    font-size: 10px;
    color: var(--outline);
}

.dbList {
    position: relative;
    
    width: 100%;
    height: 300px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.dbItem {
    position: relative;

    width: 95%;
    height: auto;

    padding: 10px;
    box-sizing: border-box;

    background-color: var(--container-high);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: start;
}

.dbI_date {
    position: relative;

    width: 50%;
    height: auto;

    font-family: "Archivo";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);
}

.dbI_value {
    position: relative;

    width: 50%;
    height: auto;

    font-family: "Archivo";
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-container);
}

.dbOverlay {
    position: absolute;
    bottom: 25px;
    left: 0px;

    width: 100%;
    height: 200px;

    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        0deg,
        var(--container) 0%,
        var(--container) 10%,
        #17221600 100%
    );
}

.addButton {
    position: relative;

    padding: 15px 25px;
    box-sizing: border-box;

    background-color: var(--primary-container);
    border-radius: 5px;
    
    border: none;
    outline: none;

    font-family: "Archivo";
    font-weight: 800;
    font-size: 20px;
    color: var(--on-primary-container);

    transition: all 0.2s cubic-bezier(0.34, 0.8, 0.34, 1.00);
}

.addButton.sec {
    background-color: var(--secondary-container);
    color: var(--on-secondary-container);
}

.addButton.clicked {
    background-color: var(--tertiary-container);
    color: var(--on-tertiary-container);

    padding: 20px 30px;
    border-radius: 10px;
}

.buttonArea {
    position: relative;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.animationFrame {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    z-index: 100;

    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.fullFrameBubble {
    position: absolute;

    top: 100%;
    
    height: 125%;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: all 0.5s cubic-bezier(0.34, 0.8, 0.34, 1.00);
}

.rotatedDiv {
    position: relative;

    margin-top: 25px;

    width: 200%;
    height: 10%;

    rotate: 5deg;

    background-color: var(--tertiary-container);
}

.fullDiv {
    position: relative;
    
    margin-top: -25px;

    width: 100%;
    height: 100%;

    background-color: var(--tertiary-container);

    padding: 100px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.addedValue {
    position: relative;

    margin-top: 50%;

    font-family: "Archivo";
    font-weight: 800;
    font-size: 150px;
    color: var(--on-tertiary-container);
}

.addedText {
    position: relative;

    margin-top: 20px;

    font-family: "Archivo";
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--on-tertiary-container);
}

.overlayIMG {
    position: absolute;
    
    bottom: 10%;
    left: 0px;

    width: 150%;
    height: auto;

    opacity: 0.25;

}