.boostable {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    flex-direction: row;
    align-items: center;
    font-size: var(--font-size-0);
}

.boost {
    background: var(--layer-container);
    margin: 0.1rem 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    padding: 3px;
}

.boost .avatar {
    flex: 0 0 auto;
}

.boost-content {
    flex: 1;
    display: inline;
    white-space: nowrap;
    font-size: 1rem;
}

.boost-delete {
    display: none;
}

.boost.expanded {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.boost.expanded .boost-delete {
    display: inline-block;
    flex: 0;
    padding-inline-end: 0.25rem;
}

.boost-form {
    display: flex;
    flex-direction: row;
    height: 2.4em;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--size-2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.boost-form-actions {
    display: flex;
    flex-direction: row;
    flex: 0 0 auto;
    gap: 2px;
}

.boost-form-actions .button.icon {
    color: var(--on-surface);
}

.boost-form-input {
    height: 100%;
    max-height: 100%;
    min-width: 19ch;
    flex: 1;
    box-sizing: border-box;
    border-radius: var(--radius-small);
    border: 1px solid var(--outline-variant);
    padding: 0.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .boost {
        max-width: 100%;
        overflow: hidden;
    }
    
    .boost.expanded {
        margin: 0;
        padding: 0.25rem;
    }
    
    .boost-form {
        max-width: 100%;
        overflow: hidden;
        gap: 0.25rem;
    }
    
    .boost-form-input {
        min-width: 10ch;
        flex: 1;
        max-width: 100%;
        padding: 0.375rem;
    }
    
    .boost-form-actions {
        flex-shrink: 0;
        gap: 1px;
    }
    
    .boost-form-actions .button.icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        padding: 0;
    }
    
    .boostable {
        max-width: 100%;
        overflow: hidden;
    }
}