

/* Header */
.headers {
    background: #242729;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headers h1 {
    font-size: 24px;
}

.logout-btn {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

/* User Info Section */
.user-infos {
    padding: 20px;
}

.user-info h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.info-grid {
    display: flex;
    justify-content: space-between;
}

.info-grid div {
    width: 48%;
}

.delete-account-btn {
    margin-top: 20px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

/* Orders Section */
.orders {
    padding: 20px;
    border-top: 1px solid #ddd;
}

.orders h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.order-card {
    display: flex;
    justify-content: space-between;
    background: #f4f4f4;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.order-card div {
    display: flex;
    flex-direction: column;
}

.order-card .btn {
    background: #aeaeaf;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}