/* Social Media Crop Styles */
.social-size-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-size-card:hover {
    border-color: #748ffc;
}
.social-size-card.selected {
    border-color: #4c6ef5;
    background: #f0f4ff;
}
.social-size-card .size-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.social-size-card .size-info {
    flex: 1;
    min-width: 0;
}
.social-size-card .size-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.social-size-card .size-info span {
    font-size: 11px;
    color: #6b7280;
}
.social-size-card .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.social-size-card.selected .check-icon {
    background: #4c6ef5;
    color: white;
}
