.agent-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 24px;
    padding: 16px;
    width: 300px;    
}

.agent-card.explore {
    background: linear-gradient(340deg, #fef8f8 0%, #fad8b5 100%);
    border-radius: 12px;
}

.agent-card.create {
    background: linear-gradient(340deg, #fef8f8 0%, #dcdcf0 100%);
    border-radius: 12px;
}     

.agent-card.review {
    background: linear-gradient(340deg, #fef8f8 0%, #e6e5ea 100%);
    border-radius: 12px;
}

.agent-card.quality {
    background: linear-gradient(340deg, #fbf9f9 0%, #e7e0da 100%);
    border-radius: 12px;
}

.agent-card .header-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100px;
}

.agent-card .header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.agent-card .text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: fit-content;
    height: fit-content;
}

.agent-card p {    
    font-size: 0.7rem;
}

.agent-card .text-container .p-container {
    /* display: flex; */
    flex-direction: row;
}

.agent-card .text-container .creator-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 300px;
    flex: 1;
    min-width: 0;
}

.agent-card .bubbles-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    justify-content: start;
    gap: 5px;
    width: fit-content;
    height: fit-content;
}

.agent-card .bubbles-footer-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.agent-card .bubbles-container .bubble {
    background: #dcdbdb; 
    border-radius: 10px; 
    padding: 0.2rem 0.6rem; 
    font-size: 0.75rem;
}

.agent-card .footer-content {
    margin: 3px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.updated-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.updated-label {
    font-size: 0.7rem;
    color: #999999; /* lighter color for the label */
    margin: 0;
}