body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #959595;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.menu {
    position: absolute;
    top: 10px;
    left: 10px;
}
.menu button {
    background: none;
    color: #333;
    border: none;
    font-size: 32px;
    padding: 15px;
    cursor: pointer;
}
.menu-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 45px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    width: 200px;
    padding: 10px;
}
.menu-content a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
}
.menu-content a:hover {
    background: #f13901;
    color: #fff;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header-logo {
    width: 135px;
    height: auto;
    margin: 0 10px;
}
button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #100604;
    color: #ffffff;
    border: none;
    border-radius: 4px;
}
button:hover {
    background-color: #333;
}
.search-bar, .add-account {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.account-list {
    width: 100%;
}
.account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
}
.account-item:hover {
    background-color: #d6d6d6;
}
.delete-button {
    background: none;
    color: red;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.delete-button:hover {
    color: darkred;
}
.footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
}
img {
    width: 110px;
    height: 110px;
    position: relative;
    top: -50px;
    display: block;
    margin: 0 auto;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
