.container.full-width {
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
}

.activity-dashboard {
    padding: 2.5rem 1rem 4rem;
}

.activity-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.activity-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 400;
    color: #3e342a;
    margin: 0;
}

.activity-filter {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid #e5ded5;
    border-radius: 5px;
    color: #4a4038;
    background: #fff;
}

.activity-feed {
    background: #fff;
    border: 1px solid #e5ded5;
    border-radius: 6px;
    padding: 0.5rem 1.75rem;
}

.activity-empty {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #a89c8e;
    padding: 1.25rem 0;
}

.al-entry {
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-top: 1px solid #efe9e2;
    position: relative;
}
.al-entry:first-child { border-top: none; }
.al-icon { font-size: 1.25rem; line-height: 1.4; flex-shrink: 0; }
.al-body { flex: 1; min-width: 0; padding-right: 1.75rem; }
.al-summary {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #4a4038;
    line-height: 1.5;
}
.al-summary strong { color: #3e342a; font-weight: 600; }
.al-changes {
    margin: 0.35rem 0 0;
    padding-left: 1.2rem;
    list-style: disc;
}
.al-changes li {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #7a7060;
    line-height: 1.55;
    word-break: break-word;
}
.al-time {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #b3a698;
    margin-top: 0.35rem;
    text-transform: uppercase;
}

.al-delete-btn {
    position: absolute;
    top: 0.85rem;
    right: 0;
    width: 22px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    padding: 0;
    border: none;
    background: transparent;
    color: #c9beb0;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}
.al-delete-btn:hover { background: #f3ece2; color: #a8493a; }
.al-delete-btn:disabled { opacity: 0.4; cursor: default; }

.activity-loadmore-wrap {
    text-align: center;
    margin-top: 1.5rem;
}

.activity-loadmore-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff;
    border: 1px solid #d6c9bb;
    color: #7a6855;
    padding: 0.7rem 1.6rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.activity-loadmore-btn:hover { background: #7a6855; color: #fff; }
.activity-loadmore-btn:disabled { opacity: 0.5; cursor: default; }

@media (max-width: 600px) {
    .activity-feed { padding: 0.5rem 1.1rem; }
}
