body {
    font-family: 'Lucida Sans', sans-serif;
    background-color: #f4f4f4;
}

.profile-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.profile-header img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.profile-info h2 {
    margin: 0;
}

.profile-info p {
    margin: 5px 0 0;
    color: #666;
}

.activity-box {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

h3 {
    margin-bottom: 10px;
}

.activity-box table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.activity-box table th,
.activity-box table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    width: auto;
}

/* Image column */
.activity-box table th:first-child,
.activity-box table td:first-child {
    width: 60px;
    text-align: center;
}

/* Title column */
.activity-box table th:nth-child(2),
.activity-box table td:nth-child(2) {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Price/Status column */
.activity-box table th:nth-child(3),
.activity-box table td:nth-child(3) {
    width: 100px;
    text-align: center;
    white-space: nowrap;
}

.activity-box table td img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.activity-box a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.activity-box a:hover {
    text-decoration: underline;
}

.listing-price-cell {
    color: #d0021b;
    font-weight: bold;
}

.edit-profile-button {
    margin-left: auto;
    background-color: #0050ff;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.edit-profile-button:hover {
    background-color: #0042d0;
}

.edit-profile-button:active {
    background-color: #00319c;
}