/* Admin description toggle styles */
.description-cell {
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.4;
}

.description-cell.expanded {
    max-height: none;
}

.toggle-description {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 0;
    margin-top: 5px;
}

.toggle-description:hover {
    text-decoration: underline;
}