body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

#top-row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
}

#left-column, #right-column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

#left-column {
    text-align: left;
}

#right-column {
    text-align: right;
}

button {
    display: block;
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
    width: 500px;
}

#ClearDataBtn {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ClearDataBtn:hover {
    background-color: darkred;
}

#ClearDataBtn i {
    font-size: 24px;
}

/* Confirmation Dialog Styles */
.dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.dialog-content button {
    margin: 10px;
    padding: 10px 20px;
}
